summaryrefslogtreecommitdiff
path: root/.builds/debian-stable-amd64.yml
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-08-18 22:52:02 +0200
committerGravatar Vincent Rischmann2021-08-18 22:52:04 +0200
commit6e6e567cbe0944fdb6497e9771a58fe884740b9b (patch)
tree96b71748d26e65155c8021c9072ca23cc26cb4bc /.builds/debian-stable-amd64.yml
parentci: enable macOS (diff)
downloadzig-sqlite-6e6e567cbe0944fdb6497e9771a58fe884740b9b.tar.gz
zig-sqlite-6e6e567cbe0944fdb6497e9771a58fe884740b9b.tar.xz
zig-sqlite-6e6e567cbe0944fdb6497e9771a58fe884740b9b.zip
ci: stop testing both memory and filesystem
We don't do much when choosing in memory or not, sqlite does all the work of managing the data, so there's not much point for us testing both modes. This will also have the benefit of reducing the time needed to run the CI, especially for aarch64 which is super slow.
Diffstat (limited to '.builds/debian-stable-amd64.yml')
-rw-r--r--.builds/debian-stable-amd64.yml8
1 files changed, 0 insertions, 8 deletions
diff --git a/.builds/debian-stable-amd64.yml b/.builds/debian-stable-amd64.yml
index 00a2bd2..d8b2337 100644
--- a/.builds/debian-stable-amd64.yml
+++ b/.builds/debian-stable-amd64.yml
@@ -20,14 +20,6 @@ tasks:
20 cd zig-sqlite 20 cd zig-sqlite
21 TERM=dumb zig build test -Din_memory=true 21 TERM=dumb zig build test -Din_memory=true
22 22
23 - test_filesystem: |
24 cd zig-sqlite
25 TERM=dumb zig build test -Din_memory=false
26
27 - test_in_memory_with_qemu: | 23 - test_in_memory_with_qemu: |
28 cd zig-sqlite 24 cd zig-sqlite
29 TERM=dumb zig build test -Din_memory=true -Denable_qemu=true 25 TERM=dumb zig build test -Din_memory=true -Denable_qemu=true
30
31 - test_filesystem_with_qemu: |
32 cd zig-sqlite
33 TERM=dumb zig build test -Din_memory=false -Denable_qemu=true