Skip to content

Commit a390fda

Browse files
authored
ci: add FPS tests stage (#258)
1 parent 5afcba4 commit a390fda

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ after_success: "coveralls"
2121
stages:
2222
- 'Lint markdown files'
2323
- 'Integration tests'
24+
- 'Production tests'
2425
- 'Test'
2526
- 'Source Clear'
2627

@@ -50,7 +51,8 @@ jobs:
5051
- mdspell -a -n -r --en-us '**/*.md'
5152
after_success: skip
5253

53-
- stage: 'Integration tests'
54+
- &integrationtest
55+
stage: 'Integration tests'
5456
merge_mode: replace
5557
env: SDK=ruby SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
5658
cache: false
@@ -63,6 +65,14 @@ jobs:
6365
- $HOME/travisci-tools/trigger-script-with-status-update.sh
6466
after_success: travis_terminate 0
6567

68+
- <<: *integrationtest
69+
stage: 'Production tests'
70+
# $TRAVIS_PULL_REQUEST_BRANCH is empty when build type is cron. travisci-tools script assumes master branch in this case.
71+
env:
72+
SDK=ruby
73+
SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
74+
FULLSTACK_TEST_REPO=ProdTesting
75+
6676
- stage: 'Source Clear'
6777
if: type = cron
6878
addons:

0 commit comments

Comments
 (0)