diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-10-12 14:00:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-12 14:00:15 +0000 |
commit | b31ae2c8b59619251cffcba1f307e0b7b9acd89d (patch) | |
tree | 53c385f6fc02f39095afdb36fdae304ee7a59ec9 /.travis.yml | |
parent | e12d4f14b65ba08904a65e188db17992478d67a7 (diff) | |
parent | ed777b643b05fbb71851df0b883483e0bcaa4ac1 (diff) |
Merge changes I11fdef41,I2b6cf113
* changes:
Allow building aarch64 images
Publish Docker Slicing Presentation
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 133 |
1 files changed, 133 insertions, 0 deletions
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 |