summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2023-07-05 21:48:20 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2023-07-05 23:13:40 +0900
commit833b32f503abb9712dbb3a6825b1730c8ee1e912 (patch)
treecbcb8345c14d329f54d48e00a2013be08fd02aae /.github
parentdd7c590f8a4dafbc0d659d07645aea59586b0f70 (diff)
also disable yjit for clang < 10
They don't compile. I guess nobody actively maintain such old compilers. Chances are the situation won't improve. Let's stop testing yjit on them.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8028
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/compilers.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index e4584594ea..1c2e036a0b 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -93,10 +93,10 @@ jobs:
- { name: clang-12, env: { default_cc: clang-12 } }
- { name: clang-11, env: { default_cc: clang-11 } }
- { name: clang-10, env: { default_cc: clang-10 } }
- - { name: clang-9, env: { default_cc: clang-9 } }
- - { name: clang-8, env: { default_cc: clang-8 } }
- - { name: clang-7, env: { default_cc: clang-7 } }
- - { name: clang-6.0, env: { default_cc: clang-6.0 } }
+ - { name: clang-9, env: { default_cc: clang-9, append_configure: '--disable-yjit' } }
+ - { name: clang-8, env: { default_cc: clang-8, append_configure: '--disable-yjit' } }
+ - { name: clang-7, env: { default_cc: clang-7, append_configure: '--disable-yjit' } }
+ - { name: clang-6.0, env: { default_cc: clang-6.0, append_configure: '--disable-yjit' } }
- name: 'clang-16 LTO'
container: clang-16
env: