diff options
-rw-r--r-- | .github/workflows/linux.yml | 3 | ||||
-rwxr-xr-x | scripts/test | 5 |
2 files changed, 7 insertions, 1 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 |
diff --git a/scripts/test b/scripts/test index e389728..abfa038 100755 --- a/scripts/test +++ b/scripts/test | |||
@@ -2,7 +2,10 @@ | |||
2 | set -e | 2 | set -e |
3 | set -x | 3 | set -x |
4 | 4 | ||
5 | unset CC | 5 | if [ "$ARCH" = "mingw32" ] || [ "$ARCH" = "mingw64" ] || [ "$ARCH" = "arm32" ]; then |
6 | unset CC | ||
7 | fi | ||
8 | |||
6 | ENABLE_ASM="${ENABLE_ASM:=ON}" | 9 | ENABLE_ASM="${ENABLE_ASM:=ON}" |
7 | 10 | ||
8 | if type apt-get >/dev/null 2>&1; then | 11 | if type apt-get >/dev/null 2>&1; then |