-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (35 loc) · 1.04 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
branches:
only:
- master
stages:
- name: build-aux-image
if: type IN (push, cron)
- name: update-superprojects
if: type = push
matrix:
include:
- language: generic
stage: build-aux-image
install: docker info
script: bash .ci/build-aux-image.sh
- language: generic
stage: update-superprojects
env:
- REPO_REF=$GO_REPO_REF
- REPO_TOKEN=$GO_REPO_TOKEN
script: bash -v .ci/update-superproject.sh
- language: generic
env:
- REPO_REF=$CPP_REPO_REF
- REPO_TOKEN=$CPP_REPO_TOKEN
script: bash -v .ci/update-superproject.sh
- language: generic
env:
- REPO_REF=$PY_REPO_REF
- REPO_TOKEN=$PY_REPO_TOKEN
script: bash -v .ci/update-superproject.sh
- language: generic
env:
- REPO_REF=$JAVA_REPO_REF
- REPO_TOKEN=$JAVA_REPO_TOKEN
script: bash -v .ci/update-superproject.sh