aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Summerwill <bob@summerwill.net>2016-08-15 15:05:54 +0800
committerBob Summerwill <bob@summerwill.net>2016-08-15 15:05:54 +0800
commit56e993c04e29c9efb8c6df0730166277b847b492 (patch)
treede0d89e26301640d38a01650deda6f811a67be2a
parent78b83342b930d98e9f8a3cab4c7d4d2d057c8f32 (diff)
downloaddexon-solidity-56e993c04e29c9efb8c6df0730166277b847b492.tar.gz
dexon-solidity-56e993c04e29c9efb8c6df0730166277b847b492.tar.zst
dexon-solidity-56e993c04e29c9efb8c6df0730166277b847b492.zip
Flipped to !on expressions and added whitespace.
-rw-r--r--.travis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 53a8d19a..229edffb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -133,17 +133,17 @@ cache:
- jsoncpp
install:
- - test $TRAVIS_INSTALL_DEPS==Off || ./scripts/install_deps.sh
+ - test $TRAVIS_INSTALL_DEPS != On || ./scripts/install_deps.sh
before_script:
- - test $TRAVIS_EMSCRIPTEN==Off || ./scripts/build_emscripten.sh
- - test $TRAVIS_RELEASE==Off || (mkdir -p build
+ - test $TRAVIS_EMSCRIPTEN != On || ./scripts/build_emscripten.sh
+ - test $TRAVIS_RELEASE != On || (mkdir -p build
&& cd build
&& cmake .. -DCMAKE_BUILD_TYPE=$TRAVIS_BUILD_TYPE
&& make -j2
&& cd ..
&& ./scripts/release.sh $ZIP_SUFFIX )
script:
- - test $TRAVIS_DOCS==Off || ./scripts/docs.sh
+ - test $TRAVIS_DOCS != On || ./scripts/docs.sh
# There are a variety of reliability issues with the Solidity unit-tests at the time of
# writing (especially on macOS), so within TravisCI we will try to run the unit-tests
@@ -155,7 +155,7 @@ script:
# itself is broken from the failure messages which we are seeing.
#
# More details on known issues at https://github.com/ethereum/solidity/issues/769
- - test $TRAVIS_TESTS==Off || (cd $TRAVIS_BUILD_DIR && (./scripts/tests.sh || ./scripts/tests.sh || ./scripts/tests.sh) )
+ - test $TRAVIS_TESTS != On || (cd $TRAVIS_BUILD_DIR && (./scripts/tests.sh || ./scripts/tests.sh || ./scripts/tests.sh) )
env:
global:
- ENCRYPTION_LABEL="6d4541b72666"
@@ -219,4 +219,4 @@ deploy:
on:
repo: ethereum/solidity
branch: release
- condition: $TRAVIS_RELEASE==On
+ condition: $TRAVIS_RELEASE == On