mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
ci: add ONIGURUMA jobs
It's very clear now: only Golang UnitTests are run with oniguruma regexp enabled. Signed-off-by: Alexander Bezzubov <bzz@apache.org>
This commit is contained in:
parent
20f6f11a43
commit
ff8d87226f
@ -15,9 +15,7 @@ addons:
|
|||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- GO_VERSION='1.10.x'
|
- GO_VERSION='1.10.x'
|
||||||
matrix:
|
|
||||||
- ONIGURUMA=0
|
- ONIGURUMA=0
|
||||||
- ONIGURUMA=1
|
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- name: test
|
- name: test
|
||||||
@ -26,7 +24,8 @@ stages:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- name: 'golang unitTests'
|
- &golang-unit-tests
|
||||||
|
name: 'golang unitTests'
|
||||||
stage: test
|
stage: test
|
||||||
install:
|
install:
|
||||||
- if [ "$ONIGURUMA" == "1" ]; then tags="$tags oniguruma"; fi; go get -v -t --tags "$tags" ./...
|
- if [ "$ONIGURUMA" == "1" ]; then tags="$tags oniguruma"; fi; go get -v -t --tags "$tags" ./...
|
||||||
@ -35,6 +34,10 @@ jobs:
|
|||||||
after_success:
|
after_success:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
|
- <<: *golang-unit-tests
|
||||||
|
name: 'golang unitTests, ONIGURUMA=1'
|
||||||
|
env: ONIGURUMA=1
|
||||||
|
|
||||||
- name: 'java unitTests'
|
- name: 'java unitTests'
|
||||||
stage: test
|
stage: test
|
||||||
language: scala
|
language: scala
|
||||||
|
Loading…
Reference in New Issue
Block a user