Skip to content

Commit

Permalink
#8: Ignore ARM stage temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Aug 17, 2020
1 parent 1194373 commit 2b3e7c9
Showing 1 changed file with 33 additions and 28 deletions.
61 changes: 33 additions & 28 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,36 @@ before_script:
- pip show rkd

jobs:
include:
- stage: Run unit tests on Python 3.6
python: 3.6
script:
- pip install -r ./requirements-dev.txt
- tox -e py36

- stage: Run unit tests on Python 3.7
python: 3.7
script:
- pip install -r ./requirements-dev.txt
- tox -e py37

- stage: Run unit tests on Python 3.8
python: 3.8
script:
- pip install -r ./requirements-dev.txt
- tox -e py38

- stage: Release
python: 3.7
script: "rkd :release:pypi"

- stage: Build recent x86_64 image
script: "GIT_TAG=${TRAVIS_TAG} rkd :release:docker:x86"

- stage: Build recent ARM image
script: "GIT_TAG=${TRAVIS_TAG} rkd :release:docker:arm"
allow_failures:
env:
- CAN_FAIL=true

include:
- stage: Run unit tests on Python 3.6
python: 3.6
script:
- pip install -r ./requirements-dev.txt
- tox -e py36

- stage: Run unit tests on Python 3.7
python: 3.7
script:
- pip install -r ./requirements-dev.txt
- tox -e py37

- stage: Run unit tests on Python 3.8
python: 3.8
script:
- pip install -r ./requirements-dev.txt
- tox -e py38

- stage: Release
python: 3.7
script: "rkd :release:pypi"

- stage: Build recent x86_64 image
script: "GIT_TAG=${TRAVIS_TAG} rkd :release:docker:x86"

- stage: Build recent ARM image
env: CAN_FAIL=true
script: "GIT_TAG=${TRAVIS_TAG} rkd :release:docker:arm"

0 comments on commit 2b3e7c9

Please sign in to comment.