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 ec2ec4b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/httpsUnitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,12 @@ 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 }}"
echo "secrets.CUSTOM_MVN_OPTIONS: ${{ secrets.CUSTOM_MVN_OPTIONS }}"
echo "env.CUSTOM_MVN_OPTIONS: ${{ env.CUSTOM_MVN_OPTIONS }}"

0 comments on commit ec2ec4b

Please sign in to comment.