Merge pull request #561 from nsacyber/v2_maven-conf #361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sets up and runs HIRS System tests | |
name: HIRS System Tests | |
on: | |
push: | |
branches: | |
- '*v2*' | |
- 'master' | |
workflow_dispatch: | |
env: | |
TEST_STATUS: 0 | |
jobs: | |
DockerTests: | |
runs-on: ubuntu-latest | |
outputs: | |
test-result: ${{ steps.set_outputs.outputs.test-result }} | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: ACA TPM2 Tests | |
continue-on-error: true | |
shell: bash | |
run: | | |
sudo apt-get install -y curl | |
export JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk-1.8.0*/jre/bin" | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
# comment out the line above and uncomment the line below to run in a forked repo. | |
#echo "${{ secrets.PKG_PWD }}" | docker login ghcr.io -u $ --password-stdin | |
bash .ci/system-tests/run_system_tests.sh | |
- name: Archive System Test Log files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: System_Test_Log_Files | |
path: logs/ | |
if-no-files-found: error | |
- name: Check System Test results | |
if: success() || failure() | |
run: | | |
if [ ${TEST_STATUS} == "0" ]; then | |
exit 0; | |
else | |
exit 1; | |
fi |