diff options
author | 2018-08-27 14:45:43 +0200 | |
---|---|---|
committer | 2018-08-27 14:45:43 +0200 | |
commit | c9c5ade13218ba9d7255fb00298309d18d892ee9 (patch) | |
tree | 711aa9c4cda9fb7dc837aafe43a6346884b5852d | |
parent | 2b6b513b8978ac63fd12ee7049c85fce1194a487 (diff) | |
download | rtic-c9c5ade13218ba9d7255fb00298309d18d892ee9.tar.gz rtic-c9c5ade13218ba9d7255fb00298309d18d892ee9.tar.zst rtic-c9c5ade13218ba9d7255fb00298309d18d892ee9.zip |
enable builds on master
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | ci/script.sh | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 8e81e822..f7257c93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,6 +33,7 @@ after_script: set +e branches: only: + - master - staging - trying diff --git a/ci/script.sh b/ci/script.sh index 9e91aad5..0d42ff3a 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -18,4 +18,6 @@ main() { cargo check --target $TARGET --examples } -main +if [ $TRAVIS_BRANCH != master ]; then + main +fi |