Skip to content

Commit

Permalink
add env.suite
Browse files Browse the repository at this point in the history
Change-Id: I2ecd3ff80fc94b5673f22b35debc42ffeeb242c4
  • Loading branch information
Linary committed Nov 8, 2019
1 parent 6075da8 commit a68b004
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ after_success:

jobs:
include:
- stage: test
if: tag =~ env(RELEASE_TAG) AND env(SUITE) = tinkerpop
- stage: deploy
if: tag =~ env(RELEASE_TAG)
script: skip
Expand Down Expand Up @@ -77,13 +79,21 @@ jobs:

env:
matrix:
- BACKEND=memory
- BACKEND=cassandra
- BACKEND=scylladb
- BACKEND=mysql
- BACKEND=hbase
- BACKEND=rocksdb
- BACKEND=postgresql
- BACKEND=memory SUITE=core
- BACKEND=cassandra SUITE=core
- BACKEND=scylladb SUITE=core
- BACKEND=mysql SUITE=core
- BACKEND=hbase SUITE=core
- BACKEND=rocksdb SUITE=core
- BACKEND=postgresql SUITE=core

- BACKEND=memory SUITE=tinkerpop
- BACKEND=cassandra SUITE=tinkerpop
- BACKEND=scylladb SUITE=tinkerpop
- BACKEND=mysql SUITE=tinkerpop
- BACKEND=hbase SUITE=tinkerpop
- BACKEND=rocksdb SUITE=tinkerpop
- BACKEND=postgresql SUITE=tinkerpop
global:
- RELEASE_BRANCH=^release-.*$
- RELEASE_TAG=^v[0-9]\..*$
Expand Down

0 comments on commit a68b004

Please sign in to comment.