[#87] Combine Packaging and System Tests into One Travis Test Phase (#89)

This commit is contained in:
apldev3
2019-02-05 12:07:47 -05:00
committed by GitHub
parent ec8c4b5c3e
commit 2e926d633e

View File

@ -36,18 +36,15 @@ script:
jobs: jobs:
include: include:
- stage: package - stage: Packaging and System Tests
script: docker run --rm -v $(pwd):/HIRS hirs/hirs-ci:centos7 /bin/bash -c "cd /HIRS; ./package/package.centos.sh" script: docker run --rm -v $(pwd):/HIRS hirs/hirs-ci:ubuntu18 /bin/bash -c "cd /HIRS; ./package/package.ubuntu.sh"
env: null
name: "Package Centos"
- script: docker run --rm -v $(pwd):/HIRS hirs/hirs-ci:ubuntu18 /bin/bash -c "cd /HIRS; ./package/package.ubuntu.sh"
env: null env: null
name: "Package Ubuntu" name: "Package Ubuntu"
- stage: system-tests - stage: Packaging and System Tests
script: .ci/system-tests/./run-system-tests.sh script: .ci/system-tests/./run-system-tests.sh
env: null env: null
name: "System Tests" name: "System Tests"
- stage: system-tests - stage: Packaging and System Tests
script: .ci/system-tests/./run-system-tests-tpm2.sh script: .ci/system-tests/./run-system-tests-tpm2.sh
env: null env: null
name: "System Tests TPM2" name: "System Tests TPM2"