We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 970ce57 commit db773e9Copy full SHA for db773e9
1 file changed
.github/workflows/ci.yml
@@ -49,12 +49,26 @@ jobs:
49
if: matrix.os == 'windows-2022'
50
uses: ilammy/msvc-dev-cmd@v1
51
52
- - name: Build sqlite3 (windows, linux)
53
- if: matrix.os != 'macos-14'
+ - name: Build sqlite3 (windows)
+ if: matrix.os == 'windows'
54
env:
55
TARGET_ARCH: x86_64
56
run: deno task build
57
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
68
+ TARGET_ARCH: aarch64
69
+ CC: clang -arch arm64
70
71
72
- name: Build sqlite3 (macos-x86_64)
73
if: matrix.os == 'macos-14'
74
0 commit comments