Skip to content

Commit 9fdbf8b

Browse files
committed
Adjust GitHub CI workflow
Add Ubuntu ARM64 platform
1 parent a69902c commit 9fdbf8b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci4sqlite3mc.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ on:
1010
- main
1111

1212
jobs:
13-
host_x86:
13+
host_unix:
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, macos-latest]
16+
os: [ubuntu-latest, macos-latest, ubuntu-24.04-arm]
17+
cc_compiler: [gcc, clang]
1718

1819
runs-on: ${{ matrix.os }}
19-
20+
env:
21+
CC: ${{ matrix.cc_compiler }}
2022
steps:
2123
- name: Install dependencies (macOS)
2224
run: brew install automake
@@ -36,12 +38,12 @@ jobs:
3638
./sqlite3shell test2.db3 ".read test/test2.sql"
3739
./sqlite3shell dummy.db3 ".read test/sqlciphertest.sql"
3840
39-
host_arm:
41+
host_qemu:
4042
runs-on: ubuntu-24.04
4143
strategy:
4244
matrix:
4345
arch: [armv7, aarch64]
44-
cc_compiler: [gcc, clang]
46+
cc_compiler: [gcc]
4547
steps:
4648
- name: Checkout
4749
uses: actions/checkout@v4

0 commit comments

Comments
 (0)