diff options
| author | Jun Aruga <jaruga@redhat.com> | 2024-08-30 12:17:00 +0200 |
|---|---|---|
| committer | Jun Aruga <junaruga@users.noreply.github.com> | 2024-09-02 15:36:09 +0200 |
| commit | 3d83df2b963476df91d22199e589955ed08d4af6 (patch) | |
| tree | 3cb307ed4ae03a4e6a8df44569a308bc64e89f22 | |
| parent | 9d522cc44d256bcad157f9dc351c7dfce146c848 (diff) | |
.travis.yml: Allow failures for arm64/arm32 pipelines.
Right now, the arm64 servers on Travis took around 7 hours to start the jobs.
Therefore, allow failures for the arm64 and arm32 pipelines
https://app.travis-ci.com/github/ruby/ruby/builds/272105049
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11509
| -rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 7fad46c601..8c7d0fa38c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -112,12 +112,12 @@ matrix: # https://github.com/rubygems/rubygems/issues/7132 - <<: *arm32-linux allow_failures: - # Allow failures for the unstable jobs. - # - name: arm64-linux + # The arm64 is very slow to start the jobs. + - name: arm64-linux - name: ppc64le-linux - name: s390x-linux - # The 2nd arm64 pipeline may be unstable. - # - name: arm32-linux + # The arm64 is very slow to start the jobs. + - name: arm32-linux fast_finish: true before_script: |
