travis: group build/e2e testing in stages

This reduces the number of concurrent jobs that get executed. The "build
test" jobs are relatively quick, and give developers the 1st feedback.
Longer e2e testing now only happens once the build tests have passed.

See-also: https://docs.travis-ci.com/user/build-stages/
Signed-off-by: Niels de Vos <ndevos@redhat.com>
(cherry picked from commit 43fbc00d49)
This commit is contained in:
Niels de Vos 2020-04-21 11:57:19 +02:00 committed by Madhu Rajanna
parent e1c919bddb
commit 3005fde6f7

View File

@ -53,7 +53,12 @@ before_script:
jobs: jobs:
include: include:
- name: static-check-make # two stages for testing, each stage runs its jobs in parallel, but stages
# are run after each other, unless the last stage fails
# - build testing
# - e2e testing
- stage: build testing
name: static-check-make
install: install:
- gem install mdl - gem install mdl
- pip install --user --upgrade pip - pip install --user --upgrade pip
@ -73,32 +78,13 @@ jobs:
- make go-test - make go-test
- make mod-check || travis_terminate 1; - make mod-check || travis_terminate 1;
- name: Build multi-architecture image for amd64 and arm64 - stage: build testing
script: name: containerized build
- ./scripts/build-multi-arch-image.sh || travis_terminate 1;
- name: containerized build
script: script:
- make containerized-build || travis_terminate 1; - make containerized-build || travis_terminate 1;
- name: cephcsi with kube 1.14.10 - stage: build testing
script: name: cephcsi on Arm64
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.14.10 || travis_terminate 1;
- name: cephcsi with kube 1.15.6
script:
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.15.6 || travis_terminate 1;
- name: cephcsi with kube 1.17.0
script:
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.17.0 || travis_terminate 1;
- name: cephcsi on Arm64
arch: arm64 arch: arm64
script: script:
- scripts/skip-doc-change.sh || travis_terminate 0; - scripts/skip-doc-change.sh || travis_terminate 0;
@ -108,7 +94,30 @@ jobs:
# - Travis Arm64 CI job runs inside unprivileged LXD which blocks # - Travis Arm64 CI job runs inside unprivileged LXD which blocks
# launching minikube test environment # launching minikube test environment
- travis_terminate 0 # deploy only on x86 - travis_terminate 0 # deploy only on x86
- name: cephcsi helm charts with kube 1.17.0
- stage: e2e testing
name: cephcsi with kube 1.14.10
script:
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.14.10 || travis_terminate 1;
- stage: e2e testing
name: cephcsi with kube 1.15.6
script:
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.15.6 || travis_terminate 1;
- stage: e2e testing
name: cephcsi with kube 1.17.0
script:
- scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1;
- scripts/travis-functest.sh v1.17.0 || travis_terminate 1;
- stage: e2e testing
name: cephcsi helm charts with kube 1.17.0
script: script:
- scripts/skip-doc-change.sh || travis_terminate 0; - scripts/skip-doc-change.sh || travis_terminate 0;
- make image-cephcsi || travis_terminate 1; - make image-cephcsi || travis_terminate 1;