Skip to content

Commit db773e9

Browse files
committed
try fix ci
1 parent 970ce57 commit db773e9

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,26 @@ jobs:
4949
if: matrix.os == 'windows-2022'
5050
uses: ilammy/msvc-dev-cmd@v1
5151

52-
- name: Build sqlite3 (windows, linux)
53-
if: matrix.os != 'macos-14'
52+
- name: Build sqlite3 (windows)
53+
if: matrix.os == 'windows'
5454
env:
5555
TARGET_ARCH: x86_64
5656
run: deno task build
5757

58+
- name: Build sqlite3 (linux x86_64)
59+
if: matrix.os == 'ubuntu-20.04'
60+
env:
61+
TARGET_ARCH: x86_64
62+
CC: clang -arch x86_64
63+
run: deno task build
64+
65+
- name: Build sqlite3 (linux arm)
66+
if: matrix.os == 'ubuntu-24.04-arm'
67+
env:
68+
TARGET_ARCH: aarch64
69+
CC: clang -arch arm64
70+
run: deno task build
71+
5872
- name: Build sqlite3 (macos-x86_64)
5973
if: matrix.os == 'macos-14'
6074
env:

0 commit comments

Comments
 (0)