From fb23fba082cc5f2f422e1ede0e8081ffbda19501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?= Date: Mon, 8 May 2023 11:28:56 +0900 Subject: add CI matrix for clang 17 / GCC 13 - https://github.com/llvm/llvm-project/commit/603c286334b07f568d39f6706c848f576914f323 - https://github.com/gcc-mirror/gcc/commit/cc035c5d8672f87dc8c2756d9f8367903aa72d93 --- .github/workflows/compilers.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 5aa3f29726..da04abbbb3 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -31,7 +31,7 @@ concurrency: # environment variables (plus the "echo $GITHUB_ENV" hack) is to reroute that # restriction. env: - default_cc: clang-15 + default_cc: clang-16 append_cc: '' # -O1 is faster than -O3 in our tests... Majority of time are consumed trying @@ -71,6 +71,7 @@ jobs: env: - {} entry: + - { name: gcc-13, env: { default_cc: gcc-13 } } - { name: gcc-12, env: { default_cc: gcc-12 } } - { name: gcc-11, env: { default_cc: gcc-11 } } - { name: gcc-10, env: { default_cc: gcc-10 } } @@ -87,6 +88,7 @@ jobs: optflags: '-O2' shared: disable # check: true + - { name: clang-17, env: { default_cc: clang-17 } } - { name: clang-16, env: { default_cc: clang-16 } } - { name: clang-15, env: { default_cc: clang-15 } } - { name: clang-14, env: { default_cc: clang-14 } } @@ -212,7 +214,7 @@ jobs: name: ${{ matrix.entry.name }} runs-on: ubuntu-latest container: - image: ghcr.io/ruby/ruby-ci-image:${{ matrix.entry.container || matrix.entry.env.default_cc || 'clang-15' }} + image: ghcr.io/ruby/ruby-ci-image:${{ matrix.entry.container || matrix.entry.env.default_cc || 'clang-16' }} options: --user root if: ${{ !contains(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }} env: ${{ matrix.entry.env || matrix.env }} -- cgit v1.2.1