File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
2
3
+ rust :
4
+ - stable
5
+ - nightly
6
+
7
+ os :
8
+ - linux
9
+ - osx
10
+
3
11
env :
4
12
global :
5
13
- secure : m28oDDxTcaLlbCXv9la/yz0PzafOCDuhOhmHRoc1ELQC0wc3r6HT3a2myrP5ewQQhaxYDzd2XXYDJB3odFV1qLQOp0hFDgNn/w3ctWZpJdLxIJN6dsaPL/azhE2hz7T+SPEoWLwTW1va6bu4wwzSOykt9//RIK0ZoyVMCRSAlMB965iMV2Nkw7SWdQZ8SlskMVk8sB103N5+WTtt6rse54jHnXTpFEq9q0EAXC1R3GBDKEWB7iwb0c++Kw46Fz86ZJJDotiVuxMtsEk0VfT0Yxx665is5Ko6sV4cahbuXqMIqYYEfqpTHNHadHWD1m1i32hW9Rjtt9fFZ+a8m9zfTixPlkfOZvQ94RnD2zqv9qiwFr8oR7t2SsZaB4aqPlJd45DqgnwQ1B0cmrUAsjSB2+1DQDkR4FgKFB/o1c6F6g8imNh+2OwiZXVLwIimXNJQ5xfZeObXFMrEZ0+uj7oxFX49EcwE/SvwsVJHST3/zL5QuQwa9/uVhW/x135/Z2ypVao2xydpow/KL8VwhX9YsOSP5ApffL4OLJ5hE9qwS/SShHGg8AenFqqm/UNFqWDU+C097YaWvG5PEvCVXvOofic65AUTCmwB+h3MSQmZIqz2sb/kwdbtkoRRR6maMgelQmg1JdIfQcKeTJIStIihjk54VENHPVAslz0oV7Ia5Bo=
Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ if [ -z "${TRAVIS_BRANCH:-}" ]; then
7
7
exit 1
8
8
fi
9
9
10
- if [ " $TRAVIS_BRANCH " != " master" ]; then
11
- echo " This commit was made against '$TRAVIS_BRANCH ' and not master! No deploy!"
10
+ if [[ " $TRAVIS_BRANCH " != " master" || " $TRAVIS_RUST_VERSION " != " stable" || " $TRAVIS_OS_NAME " != " linux" ]]; then
11
+ echo " This commit was made against '$TRAVIS_BRANCH ' with '$TRAVIS_RUST_VERSION ' on '$TRAVIS_OS_NAME '."
12
+ echo " Instead of 'master' branch with 'stable' on 'linux'!"
13
+ echo " Not deploying!"
12
14
exit 0
13
15
fi
14
16
You can’t perform that action at this time.
0 commit comments