aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKenjiro Nakayama <nakayamakenjiro@gmail.com>2024-12-17 18:31:06 +0900
committerKenjiro Nakayama <nakayamakenjiro@gmail.com>2024-12-18 08:57:15 +0900
commit3e6153a55211a2590052664ba1b4093aaa97fc83 (patch)
tree80a535f4403769933d4a5a08b597dbb62d0138e9 /.github
parentf46d437e5149fced7b0c71a4c40a1b2fbb78dc90 (diff)
downloadportable-3e6153a55211a2590052664ba1b4093aaa97fc83.tar.gz
portable-3e6153a55211a2590052664ba1b4093aaa97fc83.tar.bz2
portable-3e6153a55211a2590052664ba1b4093aaa97fc83.zip
unset CC only for mingw and arm32
Since `scripts/test` always unset "CC", the github action for "clang" in Linux does not use clang unintentionally. This patch unset CC only for mingw{32,64} and arm32.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 0c9a699..af7dfab 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -32,6 +32,9 @@ jobs:
32 - os: "ubuntu-22.04" 32 - os: "ubuntu-22.04"
33 arch: "native" 33 arch: "native"
34 compiler: "clang" 34 compiler: "clang"
35 - os: "ubuntu-24.04"
36 arch: "native"
37 compiler: "clang"
35 steps: 38 steps:
36 - name: "Checkout repository" 39 - name: "Checkout repository"
37 uses: actions/checkout@v4 40 uses: actions/checkout@v4