From ff8d87226f22783240082c2c223df18068247355 Mon Sep 17 00:00:00 2001 From: Alexander Bezzubov Date: Sun, 21 Oct 2018 19:19:11 +0200 Subject: [PATCH] ci: add ONIGURUMA jobs It's very clear now: only Golang UnitTests are run with oniguruma regexp enabled. Signed-off-by: Alexander Bezzubov --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c400054..4841864 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,9 +15,7 @@ addons: env: global: - GO_VERSION='1.10.x' - matrix: - ONIGURUMA=0 - - ONIGURUMA=1 stages: - name: test @@ -26,7 +24,8 @@ stages: jobs: include: - - name: 'golang unitTests' + - &golang-unit-tests + name: 'golang unitTests' stage: test install: - if [ "$ONIGURUMA" == "1" ]; then tags="$tags oniguruma"; fi; go get -v -t --tags "$tags" ./... @@ -35,6 +34,10 @@ jobs: after_success: - bash <(curl -s https://codecov.io/bash) + - <<: *golang-unit-tests + name: 'golang unitTests, ONIGURUMA=1' + env: ONIGURUMA=1 + - name: 'java unitTests' stage: test language: scala