diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-04-12 17:20:14 +1000 |
|---|---|---|
| committer | usa <usa@garbagecollect.jp> | 2024-04-15 14:05:00 +0900 |
| commit | 1fb8872b1563a4c7ff0d5acccb85f72a94189fca (patch) | |
| tree | 5f727ade12e5360dac9c1c9c83ac8e7a7ece177b | |
| parent | e91755734a98d03513d758e4e82064c300f6b9a0 (diff) | |
Skip c99 and c2x compilers because Ruby 3.1 couldn't build openssl gem with them.
https://github.com/ruby/ruby/actions/runs/8657971535/job/23741841371?pr=10512
https://github.com/ruby/ruby/actions/runs/8657971535/job/23741841091?pr=10512
| -rw-r--r-- | .github/workflows/compilers.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 504792f768..717685ee17 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -103,10 +103,10 @@ jobs: - { key: crosshost, name: s390x-linux-gnu, value: s390x-linux-gnu, container: crossbuild-essential-s390x } - { key: crosshost, name: x86_64-w64-mingw32, value: x86_64-w64-mingw32, container: mingw-w64 } - - { key: append_cc, name: c99, value: '-std=c99 -Werror=pedantic -pedantic-errors' } +# - { key: append_cc, name: c99, value: '-std=c99 -Werror=pedantic -pedantic-errors' } # - { key: append_cc, name: c11, value: '-std=c11 -Werror=pedantic -pedantic-errors' } # - { key: append_cc, name: c17, value: '-std=c17 -Werror=pedantic -pedantic-errors' } - - { key: append_cc, name: c2x, value: '-std=c2x -Werror=pedantic -pedantic-errors' } +# - { key: append_cc, name: c2x, value: '-std=c2x -Werror=pedantic -pedantic-errors' } - { key: CXXFLAGS, name: c++98, value: '-std=c++98 -Werror=pedantic -pedantic-errors -Wno-c++11-long-long' } # - { key: CXXFLAGS, name: c++11, value: '-std=c++11 -Werror=pedantic -pedantic-errors -Wno-c++11-long-long' } # - { key: CXXFLAGS, name: c++14, value: '-std=c++14 -Werror=pedantic -pedantic-errors -Wno-c++11-long-long' } |
