From 3e6153a55211a2590052664ba1b4093aaa97fc83 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Tue, 17 Dec 2024 18:31:06 +0900 Subject: 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. --- .github/workflows/linux.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github') 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: - os: "ubuntu-22.04" arch: "native" compiler: "clang" + - os: "ubuntu-24.04" + arch: "native" + compiler: "clang" steps: - name: "Checkout repository" uses: actions/checkout@v4 -- cgit v1.2.3-55-g6feb