diff options
author | chriseth <chris@ethereum.org> | 2018-04-20 00:31:58 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-04-20 00:32:52 +0800 |
commit | fb3f579ae21821acf06873767dc4bdbf64bab6d0 (patch) | |
tree | b1c1da8a9a6ba886bb43f115328a18222f59553d /.travis.yml | |
parent | 3f7223759a80052085fe527f1f5927fafbe42540 (diff) | |
download | dexon-solidity-fb3f579ae21821acf06873767dc4bdbf64bab6d0.tar.gz dexon-solidity-fb3f579ae21821acf06873767dc4bdbf64bab6d0.tar.zst dexon-solidity-fb3f579ae21821acf06873767dc4bdbf64bab6d0.zip |
Disable tests on travis again.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e9d2dde6..3640d2e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -160,7 +160,8 @@ install: - test $SOLC_INSTALL_DEPS_TRAVIS != On || (scripts/install_deps.sh) - test "$TRAVIS_OS_NAME" != "linux" || (scripts/install_cmake.sh) # Disable tests unless run on the release branch, on tags or with daily cron - - if [ "$TRAVIS_BRANCH" != release -a -z "$TRAVIS_TAG" -a "$TRAVIS_EVENT_TYPE" != cron ]; then SOLC_TESTS=Off; fi + #- if [ "$TRAVIS_BRANCH" != release -a -z "$TRAVIS_TAG" -a "$TRAVIS_EVENT_TYPE" != cron ]; then SOLC_TESTS=Off; fi + - SOLC_TESTS=Off - if [ "$TRAVIS_BRANCH" = release -o -n "$TRAVIS_TAG" ]; then echo -n > prerelease.txt; else date -u +"nightly.%Y.%-m.%-d" > prerelease.txt; fi - echo -n "$TRAVIS_COMMIT" > commit_hash.txt |