summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2024-04-14 20:19:40 +0200
committerGravatar Vincent Rischmann2024-04-14 20:19:42 +0200
commit5890065d754ecaca9533ebfa46e72280576510b8 (patch)
tree4253ae1a5619677472992ef64af616f54c74af67
parentbuild: rework and fix the CI tests (diff)
downloadzig-sqlite-5890065d754ecaca9533ebfa46e72280576510b8.tar.gz
zig-sqlite-5890065d754ecaca9533ebfa46e72280576510b8.tar.xz
zig-sqlite-5890065d754ecaca9533ebfa46e72280576510b8.zip
build: stop building with the system library in CI
GitHub Actions workflows run on Ubuntu 22.04 which provides sqlite 3.37, we depend on at least 3.38 so we can't test this.
-rw-r--r--build.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/build.zig b/build.zig
index 460df86..de81563 100644
--- a/build.zig
+++ b/build.zig
@@ -37,10 +37,6 @@ const ci_targets = switch (builtin.target.cpu.arch) {
37 .linux => [_]TestTarget{ 37 .linux => [_]TestTarget{
38 // Targets linux but other CPU archs. 38 // Targets linux but other CPU archs.
39 TestTarget{ 39 TestTarget{
40 .query = .{},
41 .bundled = false,
42 },
43 TestTarget{
44 .query = .{ 40 .query = .{
45 .cpu_arch = .x86_64, 41 .cpu_arch = .x86_64,
46 .abi = .musl, 42 .abi = .musl,