Skip to content

Commit

Permalink
Leave out builds on ppc64le for now
Browse files Browse the repository at this point in the history
Those are very often taking longer than 50 mins, requiring multiple tries
to complete on Travis CI. It's unclear if the ppc64le runners are just
overbooked or generally slower than the arm64 ones (unlikely).
  • Loading branch information
fscheiner committed Jul 12, 2024
1 parent b092569 commit 1a7e219
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ jobs:
- &run_tests
# Template; subsequent uses modify 'env'
arch:
- ppc64le
#- ppc64le
- arm64
env:
- IMAGE=ppc64le/rockylinux:9 TASK=tests COMPONENTS=udt,myproxy,ssh
#- IMAGE=rockylinux:9 TASK=tests COMPONENTS=udt,myproxy,ssh
- IMAGE=rockylinux:8 TASK=tests COMPONENTS=udt,myproxy,ssh
stage: test
services:
- docker
Expand All @@ -39,20 +41,20 @@ jobs:
script:
- travis-ci/setup_tasks.sh

- <<: *run_tests
arch:
- arm64
env:
- IMAGE=arm64v8/rockylinux:8 TASK=tests COMPONENTS=udt,myproxy,ssh
# - <<: *run_tests
# arch:
# - arm64
# env:
# - IMAGE=rockylinux:8 TASK=tests COMPONENTS=udt,myproxy,ssh

- <<: *run_tests
arch:
- ppc64le
env:
- IMAGE=ppc64le/rockylinux:9 TASK=tests COMPONENTS=gram5
# - <<: *run_tests
# arch:
# - ppc64le
# env:
# - IMAGE=rockylinux:9 TASK=tests COMPONENTS=gram5

- <<: *run_tests
arch:
- arm64
env:
- IMAGE=arm64v8/rockylinux:8 TASK=tests COMPONENTS=gram5
- IMAGE=rockylinux:8 TASK=tests COMPONENTS=gram5

0 comments on commit 1a7e219

Please sign in to comment.