.travis.yml: Add arm64 case.

In the past, I saw that the 2nd arm64 pipeline was unstable. Now I want to try
it to check if it is stable enough to run again.

As far as I know, right now the only native arm64 cases are MacOS Arm
`macos-arm-oss` on GitHub Actions. And I want to add Linux arm64 case on
pull-request in CI.
This commit is contained in:
Jun Aruga 2023-11-08 15:24:21 +01:00 committed by Jun Aruga
parent b013aae0c6
commit 0a7e620a36

View File

@ -106,14 +106,14 @@ matrix:
# <internal:dir>:411:in glob: File name too long - (Errno::ENAMETOOLONG) # <internal:dir>:411:in glob: File name too long - (Errno::ENAMETOOLONG)
# https://github.com/rubygems/rubygems/issues/7132 # https://github.com/rubygems/rubygems/issues/7132
- <<: *arm32-linux - <<: *arm32-linux
# Comment out as the 2nd arm64 pipeline is unstable. - <<: *arm64-linux
# - <<: *arm64-linux
- <<: *ppc64le-linux - <<: *ppc64le-linux
- <<: *s390x-linux - <<: *s390x-linux
allow_failures: allow_failures:
# Allow failures for the unstable jobs. # Allow failures for the unstable jobs.
# - name: arm32-linux # - name: arm32-linux
# - name: arm64-linux # The 2nd arm64 pipeline may be unstable.
- name: arm64-linux
# - name: ppc64le-linux # - name: ppc64le-linux
# - name: s390x-linux # - name: s390x-linux
fast_finish: true fast_finish: true