Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2019-05-17 19:25:33 +0300
committerMatthias Held <ilovemilk@wusa.io>2019-05-17 19:25:33 +0300
commita59ee798cbb65d080b13ba6bf690576af0962947 (patch)
treef950a735e22d1a90fb2923d0f4b7336d2fe5c24a
parent487cd7a9fe51a5f4a0ae81ccfe4e3bf1de1ed80e (diff)
use matrix expansion in stages
-rw-r--r--.travis.yml33
1 files changed, 16 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml
index 159ef9d..d87da6d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,6 +28,8 @@ before_install:
- ./occ app:list
jobs:
+ allow_failures:
+ - env: DB=mysql;CODECHECK=2
include:
- stage: test
script: cd apps/$APP_NAME/
@@ -41,6 +43,20 @@ jobs:
# Run phpunit tests
script: sh -c "if [ '$CODECHECK' != '1' -a '$CODECHECK' != '2' ]; then phpunit --configuration phpunit.xml; fi"
+ php: 7.0
+ env: "DB=sqlite CORE_BRANCH=stable13"
+ php: 7.0
+ env: "DB=sqlite CORE_BRANCH=stable14"
+ php: 7.0
+ env: "DB=sqlite CORE_BRANCH=stable15"
+ php: 7.1
+ env: DB=mysql
+ php: 7.1
+ env: DB=pgsql
+ php: 7.1
+ env: DB=mysql;CODECHECK=1
+ php: 7.1
+ env: DB=mysql;CODECHECK=2
stages:
- test
@@ -54,21 +70,4 @@ after_success:
- cd ..
matrix:
- include:
- - php: 7.0
- env: "DB=sqlite CORE_BRANCH=stable13"
- - php: 7.0
- env: "DB=sqlite CORE_BRANCH=stable14"
- - php: 7.0
- env: "DB=sqlite CORE_BRANCH=stable15"
- - php: 7.1
- env: DB=mysql
- - php: 7.1
- env: DB=pgsql
- - php: 7.1
- env: DB=mysql;CODECHECK=1
- - php: 7.1
- env: DB=mysql;CODECHECK=2
- allow_failures:
- - env: DB=mysql;CODECHECK=2
fast_finish: true