diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2019-12-02 17:21:20 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2019-12-12 15:38:28 -0300 |
commit | c9292f6b699fa1edba46a1cbeaa582e7dac2f8c6 (patch) | |
tree | 21cb6c8a942ea3eea838604b8ea66cdd0df65684 | |
parent | 55cf0d2a015706932c477ff9521645814d9b89d1 (diff) | |
download | luarocks-c9292f6b699fa1edba46a1cbeaa582e7dac2f8c6.tar.gz luarocks-c9292f6b699fa1edba46a1cbeaa582e7dac2f8c6.tar.bz2 luarocks-c9292f6b699fa1edba46a1cbeaa582e7dac2f8c6.zip |
.travis.yml: do not trigger smoke test on every branch with a number
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 9563b0ba..aa81ff7f 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -35,13 +35,13 @@ jobs: | |||
35 | include: | 35 | include: |
36 | # Smoke tests for release branches | 36 | # Smoke tests for release branches |
37 | - stage: smoke | 37 | - stage: smoke |
38 | if: branch =~ [0-9].* | 38 | if: branch =~ ^[0-9].* |
39 | script: *smoke_script | 39 | script: *smoke_script |
40 | os: linux | 40 | os: linux |
41 | env: | 41 | env: |
42 | - LUA="lua=5.3" | 42 | - LUA="lua=5.3" |
43 | - stage: smoke | 43 | - stage: smoke |
44 | if: branch =~ [0-9].* | 44 | if: branch =~ ^[0-9].* |
45 | script: *smoke_script | 45 | script: *smoke_script |
46 | os: osx | 46 | os: osx |
47 | language: generic | 47 | language: generic |