Skip to content

Commit

Permalink
Try to build!
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Overbeck committed Nov 30, 2023
1 parent 42feaad commit a02e517
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,22 @@ jobs:
name: createCoreVersionParam
command: |
echo 'export CORE_VERSION_OVERRIDE'="-Ddockstore-core.version=$LATEST_VERSION" >> $BASH_ENV
- run:
name: saveEnv
command: |
cp $BASH_ENV bash.env
- persist_to_workspace:
root: .
paths:
bash.env

unit-tests:
executor: unit_tests_executor
environment:
TESTING_PROFILE: unit-tests
MAVEN_GOAL: test
steps:
- restore_bash_env
- setup_for_unit_tests
- run_tests
- save_test_results
Expand Down Expand Up @@ -196,6 +205,7 @@ jobs:
- install_yq
- install-git-secrets
- install_confidential_test_data
- restore_bash_env
- run:
name: build
command: |
Expand Down Expand Up @@ -253,6 +263,13 @@ commands:
sudo NEEDRESTART_MODE=a apt install openssl
bash scripts/decrypt.sh
restore_bash_env:
steps:
- attach_workspace:
at: .
- run: |
cat bash.env >> $BASH_ENV || true
send_coverage:
steps:
- run:
Expand Down

0 comments on commit a02e517

Please sign in to comment.