aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: bfc81b26b0c33724312317fba6e0f0228f011114 (plain)
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
32
33
34
35
36
37
38
39
40
---
sudo: required
services: docker
language: generic

before_script:
  - sudo apt-get -y install qemu-user-static
  - sudo add-apt-repository -y ppa:jonathonf/python-3.6
  - sudo apt-get update
  - sudo apt-get install python3.6 python3.6-dev
  - sudo pip install tox
  - sudo -E docker login -u="${DOCKER_USERNAME}" -p="${DOCKER_PASSWORD}"
  - (cd .. && git clone https://github.com/estesp/manifest-tool)
  - (cd ../manifest-tool && git checkout v0.9.0)
  - (cd ../manifest-tool && sudo -E make && sudo -E make install)

jobs:
  include:
    - stage: run unit tests
      script: >
        tox -e docs,pep8,pylint,yamllint,ansiblelint,bashate,py27,py36,cover
    - 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="arm"
    - 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/arm,linux/arm64 \
          --template ${DOCKER_USERNAME}/xtesting:ARCH-latest \
          --target ${DOCKER_USERNAME}/xtesting:latest