We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55fff0a commit 1c6f2f2Copy full SHA for 1c6f2f2
.travis.yml
@@ -1,11 +1,25 @@
1
language: go
2
-
3
go:
4
- 1.12.x
5
- master
6
7
git:
8
depth: 1
9
10
script:
11
- go test -v -race ./...
+stages:
+ - 'Integration tests'
+ - 'Test'
12
+jobs:
13
+ include:
14
+ - stage: 'Integration Tests'
15
+ merge_mode: replace
16
+ env: SDK=go
17
+ cache: false
18
+ language: minimal
19
+ install: skip
20
+ before_script:
21
+ - mkdir $HOME/travisci-tools && pushd $HOME/travisci-tools && git init && git pull https://[email protected]/optimizely/travisci-tools.git && popd
22
+ script:
23
+ - "$HOME/travisci-tools/fsc-trigger/trigger_fullstack-sdk-compat.sh"
24
+ after_success: travis_terminate 0
25
+
0 commit comments