forked from datashim-io/datashim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (30 loc) · 833 Bytes
/
.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
services:
- docker
env:
- DOCKER_REGISTRY=quay.io/datashim
matrix:
include:
- stage: build_arm64
services:
- docker
os: linux
arch: arm64
# trigger build foo
install: echo "no install"
script: cd build-tools; ./build_components.sh; ./build_csi_plugins.sh; ./build_sidecars.sh;
- stage: build_amd64
services:
- docker
os: linux
arch: amd64
# trigger build foo
install: echo "no install"
script: cd build-tools; ./build_components.sh; ./build_csi_plugins.sh; ./build_sidecars.sh;
- stage: build_ppc64le
services:
- docker
os: linux
arch: ppc64le
# trigger build foo
install: echo "no install"
script: cd build-tools; ./build_components.sh; ./build_csi_plugins.sh; ./build_sidecars.sh;