Skip to content

Commit

Permalink
Update Travis configuration: Tags no longer contain 'v'
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal committed Apr 12, 2020
1 parent 5a38beb commit 82632f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ matrix:
fast_finish: true
include:
- jdk: oraclejdk8
if: branch = master OR tag =~ ^v8\.[0-9]+\.[0-9]+ # match v8.x.x
if: branch = master OR tag =~ ^8\.[0-9]+\.[0-9]+ # match 8.x.x
- jdk: openjdk11
if: branch = 9.0.0 OR tag =~ ^v[0-9]+[0-9]+\.[0-9]+\.[0-9]+ # match vxx.x.x
if: branch = 9.0.0 OR tag =~ ^[0-9]+[0-9]+\.[0-9]+\.[0-9]+ # match xx.x.x

# run in container
sudo: false
Expand Down

0 comments on commit 82632f7

Please sign in to comment.