[#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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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