mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
# 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
|