[前][次][番号順一覧][スレッド一覧]

ruby-changes:60998

From: Takashi <ko1@a...>
Date: Mon, 4 May 2020 06:00:27 +0900 (JST)
Subject: [ruby-changes:60998] f72bec2cea (master): Travis s390x-linux is too unstable

https://git.ruby-lang.org/ruby.git/commit/?id=f72bec2cea

From f72bec2cea313f7a72a6f907f3dd64f766e917f6 Mon Sep 17 00:00:00 2001
From: Takashi Kokubun <takashikkbn@g...>
Date: Sun, 3 May 2020 13:58:54 -0700
Subject: Travis s390x-linux is too unstable

It has caused errors by ENOSPC like
https://travis-ci.org/github/ruby/ruby/jobs/682520961 too often.

I cleared all cache of Travis yesterday, but it didn't help it. Until
somebody figures out how to fix it, let me exclude it from CI status
reports to avoid false alerts.

diff --git a/.travis.yml b/.travis.yml
index c720cb3..20a70a2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -426,10 +426,7 @@ matrix: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L426
   include:
     # Build every commit:
     - <<: *x86_64-linux
-    - <<: *arm64-linux
     - <<: *i686-linux
-    - <<: *arm32-linux
-    - <<: *s390x-linux
     - <<: *pedanticism
     - <<: *assertions
     - <<: *baseruby
@@ -437,6 +434,9 @@ matrix: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L434
     - <<: *rubyspec27
     - <<: *dependency
     # Build every commit (Allowed Failures):
+    - <<: *arm32-linux
+    - <<: *arm64-linux
+    - <<: *s390x-linux
     - <<: *ASAN
     - <<: *MSAN
     - <<: *UBSAN
@@ -451,10 +451,11 @@ matrix: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L451
     - <<: *CALL_THREADED_CODE
     - <<: *NO_THREADED_CODE
   allow_failures:
-    - name: -fsanitize=address
-    - name: -fsanitize=memory
     - name: arm32-linux
     - name: arm64-linux
+    - name: s390x-linux
+    - name: -fsanitize=address
+    - name: -fsanitize=memory
   fast_finish: true
 
 before_script:
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]