We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a69902c commit 9fdbf8bCopy full SHA for 9fdbf8b
1 file changed
.github/workflows/ci4sqlite3mc.yml
@@ -10,13 +10,15 @@ on:
10
- main
11
12
jobs:
13
- host_x86:
+ host_unix:
14
strategy:
15
matrix:
16
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, macos-latest, ubuntu-24.04-arm]
17
+ cc_compiler: [gcc, clang]
18
19
runs-on: ${{ matrix.os }}
-
20
+ env:
21
+ CC: ${{ matrix.cc_compiler }}
22
steps:
23
- name: Install dependencies (macOS)
24
run: brew install automake
@@ -36,12 +38,12 @@ jobs:
36
38
./sqlite3shell test2.db3 ".read test/test2.sql"
37
39
./sqlite3shell dummy.db3 ".read test/sqlciphertest.sql"
40
- host_arm:
41
+ host_qemu:
42
runs-on: ubuntu-24.04
43
44
45
arch: [armv7, aarch64]
- cc_compiler: [gcc, clang]
46
+ cc_compiler: [gcc]
47
48
- name: Checkout
49
uses: actions/checkout@v4
0 commit comments