From ed777b643b05fbb71851df0b883483e0bcaa4ac1 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 11 Oct 2017 05:29:11 +0200 Subject: Allow building aarch64 images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It must be noted that Docker automated build cannot create these images as the prerequisites are unmet to cross-compile [1]. It also publishes a travis config file [2]. [1] https://www.kernel.org/doc/html/v4.11/admin-guide/binfmt-misc.html [2] https://travis-ci.org/collivier/functest/builds/286932633 Change-Id: I11fdef410cc40989132205a098410175f789fdef Signed-off-by: Cédric Ollivier --- .travis.yml | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..af67f4786 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,133 @@ +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 functest-core images + script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="" + - aarch64_dirs="docker/core" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/core" + - aarch64_dirs="" + - stage: publish functest-core manifests + script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64,linux/arm64 \ + --template ${DOCKER_USERNAME}/functest-core:x86_64-latest \ + --template ${DOCKER_USERNAME}/functest-core:aarch64-latest \ + --target ${DOCKER_USERNAME}/functest-core:latest + - stage: build all functest images + script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="" + - aarch64_dirs="docker/healthcheck" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="" + - aarch64_dirs="docker/smoke" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="" + - aarch64_dirs="docker/features" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="" + - aarch64_dirs="docker/components" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/healthcheck" + - aarch64_dirs="" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/smoke" + - aarch64_dirs="" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/features" + - aarch64_dirs="" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/components" + - aarch64_dirs="" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/vnf" + - aarch64_dirs="" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/restapi" + - aarch64_dirs="" + - script: sudo -E bash build.sh + env: + - repo="${DOCKER_USERNAME}" + - x86_64_dirs="docker/parser" + - aarch64_dirs="" + - stage: publish all manifests + script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64,linux/arm64 \ + --template ${DOCKER_USERNAME}/functest-healthcheck:x86_64-latest \ + --template ${DOCKER_USERNAME}/functest-healthcheck:aarch64-latest \ + --target ${DOCKER_USERNAME}/functest-healthcheck:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64,linux/arm64 \ + --template ${DOCKER_USERNAME}/functest-healthcheck:x86_64-latest \ + --template ${DOCKER_USERNAME}/functest-healthcheck:aarch64-latest \ + --target ${DOCKER_USERNAME}/functest-healthcheck:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64,linux/arm64 \ + --template ${DOCKER_USERNAME}/functest-smoke:x86_64-latest \ + --template ${DOCKER_USERNAME}/functest-smoke:aarch64-latest \ + --target ${DOCKER_USERNAME}/functest-smoke:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64,linux/arm64 \ + --template ${DOCKER_USERNAME}/functest-features:x86_64-latest \ + --template ${DOCKER_USERNAME}/functest-features:aarch64-latest \ + --target ${DOCKER_USERNAME}/functest-features:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64,linux/arm64 \ + --template ${DOCKER_USERNAME}/functest-components:x86_64-latest \ + --template ${DOCKER_USERNAME}/functest-components:aarch64-latest \ + --target ${DOCKER_USERNAME}/functest-components:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64 \ + --template ${DOCKER_USERNAME}/functest-vnf:x86_64-latest \ + --target ${DOCKER_USERNAME}/functest-vnf:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64 \ + --template ${DOCKER_USERNAME}/functest-restapi:x86_64-latest \ + --target ${DOCKER_USERNAME}/functest-restapi:latest + - script: > + sudo manifest-tool push from-args \ + --platforms linux/amd64 \ + --template ${DOCKER_USERNAME}/functest-parser:x86_64-latest \ + --target ${DOCKER_USERNAME}/functest-parser:latest -- cgit 1.2.3-korg