File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,22 @@ services:
5
5
- docker
6
6
7
7
before_script :
8
+ # dependencies
9
+ - pip install j2cli requests
10
+ - wget https://github.com/riotkit-org/ci-utils/archive/v2.0.0.zip -O /tmp/ci-utils.zip
11
+ - curl "https://raw.githubusercontent.com/riotkit-org/ci-utils/master/ci-integration/travis.sh" -s | bash
12
+
13
+ # activate ARM builds on travis
14
+ - /opt/riotkit/utils/bin/setup-travis-arm-builds
15
+
16
+ # authorization
8
17
- echo "$DOCKER_PASSWORD" | sudo docker login -u "$DOCKER_USERNAME" --password-stdin
9
18
- echo "$QUAY_PASSWORD" | sudo docker login -u "$QUAY_USERNAME" --password-stdin quay.io
10
19
11
20
jobs :
12
21
include :
13
22
- stage : Build recent x86_64 image
14
- script : make build ARCH=x86_64 GIT_TAG=${TRAVIS_TAG} PUSH=true
23
+ script : make build_image ARCH=x86_64 GIT_TAG=${TRAVIS_TAG} PUSH=true
15
24
16
25
- stage : Build recent ARM image
17
- script : make build ARCH=arm GIT_TAG=${TRAVIS_TAG} PUSH=true
26
+ script : make build_image ARCH=arm GIT_TAG=${TRAVIS_TAG} PUSH=true
You can’t perform that action at this time.
0 commit comments