Skip to content

Commit

Permalink
Increase "testing at HEAD" matrix
Browse files Browse the repository at this point in the history
In our cron runs, we now run these tests four different ways:

- Latest Released CLI, Latest Released Packages
- Latest Unreleased CLI, Latest Unreleased Packages
- (NEW) Latest Released CLI, Latest Unreleased Packages
- (NEW) Latest Unreleased CLI, Latest Released Packages

This should give us much better coverage on CLI/Package
mismatches.
  • Loading branch information
ellismg committed Sep 10, 2019
1 parent b7bde24 commit 56034e0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,15 @@ before_script:
jobs:
include:
- script: make travis_${TRAVIS_EVENT_TYPE}
- stage: latest
- stage: latest-all
if: type = cron
script: "${GOPATH}/src/github.com/pulumi/scripts/ci/run-at-head"
- stage: latest-cli
if: type = cron
script: "${GOPATH}/src/github.com/pulumi/scripts/ci/run-at-head --no-latest-packages"
- stage: latest-packages
if: type = cron
script: "${GOPATH}/src/github.com/pulumi/scripts/ci/run-at-head --no-latest-cli"
after_failure:
- "${PULUMI_SCRIPTS}/ci/upload-failed-tests"
notifications:
Expand Down

0 comments on commit 56034e0

Please sign in to comment.