Skip to content

Commit

Permalink
JAPI-524 env var test
Browse files Browse the repository at this point in the history
Signed-off-by: Rodrigo Pastrana <[email protected]>
  • Loading branch information
rpastrana committed Aug 17, 2023
1 parent 160afbd commit 395952e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/httpsUnitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,10 @@ jobs:
restore-keys: ${{ runner.os }}-m2

- name: Build with Maven
run: mvn -B --activate-profiles jenkins-on-demand -Dmaven.gpg.skip=true -Dmaven.javadoc.skip=true -Dmaven.test.failure.ignore=false -Dhpccconn=https://eclwatch.default:8010 -Dwssqlconn=https://sql2ecl.default:8510 ${{ env.CUSTOM_MVN_OPTIONS }} install
env:
CUSTOM_MVN_OPTIONS_SECRET : ${{ secrets.CUSTOM_MVN_OPTIONS }}
CUSTOM_MVN_OPTIONS_ENV : ${{ env.CUSTOM_MVN_OPTIONS }}
#run: mvn -B --activate-profiles jenkins-on-demand -Dmaven.gpg.skip=true -Dmaven.javadoc.skip=true -Dmaven.test.failure.ignore=false -Dhpccconn=https://eclwatch.default:8010 -Dwssqlconn=https://sql2ecl.default:8510 ${{ env.CUSTOM_MVN_OPTIONS }} install
run: |
echo "CUSTOM_MVN_OPTIONS_SECRET: ${CUSTOM_MVN_OPTIONS_SECRET}"
echo "CUSTOM_MVN_OPTIONS_ENV: ${CUSTOM_MVN_OPTIONS_ENV}"

0 comments on commit 395952e

Please sign in to comment.