Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ after_success: "coveralls"
stages:
- 'Lint markdown files'
- 'Integration tests'
- 'Production tests'
- 'Test'
- 'Source Clear'

Expand Down Expand Up @@ -50,7 +51,8 @@ jobs:
- mdspell -a -n -r --en-us '**/*.md'
after_success: skip

- stage: 'Integration tests'
- &integrationtest
stage: 'Integration tests'
merge_mode: replace
env: SDK=ruby SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
cache: false
Expand All @@ -63,6 +65,14 @@ jobs:
- $HOME/travisci-tools/trigger-script-with-status-update.sh
after_success: travis_terminate 0

- <<: *integrationtest
stage: 'Production tests'
# $TRAVIS_PULL_REQUEST_BRANCH is empty when build type is cron. travisci-tools script assumes master branch in this case.
env:
SDK=ruby
SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
FULLSTACK_TEST_REPO=ProdTesting

- stage: 'Source Clear'
if: type = cron
addons:
Expand Down