OSDN Git Service

[Chore] autotoolsのビルドツールチェインを変更
authorHabu <habu1010+github@gmail.com>
Fri, 17 May 2024 12:19:32 +0000 (21:19 +0900)
committerHabu <habu1010+github@gmail.com>
Fri, 17 May 2024 12:19:32 +0000 (21:19 +0900)
GCC でのビルドを ubuntu-24.04 ランナーで GCC 13 を使用するように変更する。
Clang はMac版メンテナがApple Clang 14の環境であるため、現状維持で clang 14 を
そのまま使用する。

.github/workflows/create-cache-for-ccache.yml
.github/workflows/pull-request-status-check.yml

index 125046a..1e0aa79 100644 (file)
@@ -23,8 +23,8 @@ jobs:
     name: Japanese version with gcc
     uses: ./.github/workflows/build-with-autotools.yml
     with:
-      runner: ubuntu-22.04
-      cxx: g++-11
+      runner: ubuntu-24.04
+      cxx: g++-13
       cxx-flags: "-pipe -O3 -Werror -Wall -Wextra"
       use-ccache: true
 
@@ -32,8 +32,8 @@ jobs:
     name: English version with gcc
     uses: ./.github/workflows/build-with-autotools.yml
     with:
-      runner: ubuntu-22.04
-      cxx: g++-11
+      runner: ubuntu-24.04
+      cxx: g++-13
       cxx-flags: "-pipe -O3 -Werror -Wall -Wextra"
       configure-opts: "--disable-japanese"
       distcheck: true
index e17b51d..b148e04 100644 (file)
@@ -36,8 +36,8 @@ jobs:
     name: Build Japanese version with gcc
     uses: ./.github/workflows/build-with-autotools.yml
     with:
-      runner: ubuntu-22.04
-      cxx: g++-11
+      runner: ubuntu-24.04
+      cxx: g++-13
       cxx-flags: "-pipe -O3 -Werror -Wall -Wextra"
       use-ccache: true
 
@@ -45,8 +45,8 @@ jobs:
     name: Build English version with gcc
     uses: ./.github/workflows/build-with-autotools.yml
     with:
-      runner: ubuntu-22.04
-      cxx: g++-11
+      runner: ubuntu-24.04
+      cxx: g++-13
       cxx-flags: "-pipe -O3 -Werror -Wall -Wextra"
       configure-opts: "--disable-japanese"
       distcheck: true