aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-03-12 08:19:57 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-03-12 14:34:51 +0100
commit9c7ada641fe719e414cd0732a7bbfacdd8120174 (patch)
tree3d6e97047a57724657173e2527b8cde9796d8028 /.travis.yml
parentff2dd12dd98abeb65b8bcf7c36a49ca9036a3850 (diff)
Add a travis-ci config file
It also fixes a typo in build.sh. Change-Id: Id9ac580d3b6268dd8e2326cecef57db213ef1a11 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..36f1969a
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,28 @@
+sudo: required
+language: bash
+services: docker
+language: generic
+
+before_script:
+ - sudo apt-get -y install qemu-user-static
+ - sudo -E docker login -u="${DOCKER_USERNAME}" -p="${DOCKER_PASSWORD}"
+ - (cd .. && git clone https://github.com/estesp/manifest-tool)
+ - (cd ../manifest-tool && sudo -E make && sudo -E make install)
+
+jobs:
+ include:
+ - stage: build xtesting images
+ script: sudo -E bash build.sh
+ env:
+ - REPO="${DOCKER_USERNAME}"
+ - arch="amd64"
+ - script: sudo -E bash build.sh
+ env:
+ - REPO="${DOCKER_USERNAME}"
+ - arch="arm64"
+ - stage: publish xtesting manifests
+ script: >
+ sudo manifest-tool push from-args \
+ --platforms linux/amd64,linux/arm64 \
+ --template ${DOCKER_USERNAME}/xtesting:ARCH-latest \
+ --target ${DOCKER_USERNAME}/xtesting:latest