From 65285ff5b28f81a5e223337f93fe127d2eed2872 Mon Sep 17 00:00:00 2001 From: David Steele Date: Thu, 26 Mar 2020 22:00:40 -0400 Subject: [PATCH] Rearrange Travis CI jobs based on current runtimes. The runtimes of the tests have change with recent updates and it is generally best to order the slowest tests first. --- .travis.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6cca775f2..3fa51b3e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,20 +23,20 @@ jobs: # All unit (without coverage) and integration tests for 32-bit - env: PGB_CI="test --vm=u12 --param=no-performance" - # All unit tests (with coverage) on the newest gcc available - - env: PGB_CI="test --vm=f30 --param=c-only --param=no-performance" - - # All integration tests - - env: PGB_CI="test --vm=co6 --param=build-package --param=module=mock --param=module=real" - - # All integration tests - - env: PGB_CI="test --vm=u18 --param=build-package --param=module=mock --param=module=real" - # Debian/Ubuntu documentation - env: PGB_CI=" doc --vm=u18" # All integration tests - - env: PGB_CI="test --vm=co7 --param=build-package --param=module=mock --param=module=real" + - env: PGB_CI="test --vm=co6 --param=build-package --param=module=mock --param=module=real" + + # All unit tests (with coverage) on the newest gcc available + - env: PGB_CI="test --vm=f30 --param=c-only --param=no-performance" + + # All integration tests + - env: PGB_CI="test --vm=u18 --param=build-package --param=module=mock --param=module=real" + + # RHEL/CentOS 6 documentation + - env: PGB_CI=" doc --vm=co6" # Performance tests and unit tests (with coverage) run without a container in a non-UTC timezone - dist: bionic @@ -44,8 +44,8 @@ jobs: - PGB_CI="test --vm=none --param=tz=America/New_York" services: - # RHEL/CentOS 6 documentation - - env: PGB_CI=" doc --vm=co6" + # All integration tests + - env: PGB_CI="test --vm=co7 --param=build-package --param=module=mock --param=module=real" # RHEL/CentOS 7 documentation - env: PGB_CI=" doc --vm=co7"