summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-03-22 19:58:01 +0100
committerGravatar Vincent Rischmann2021-03-23 17:37:36 +0100
commiteb5f39770029d710123df2a3264929405c8cf38b (patch)
tree60d652773ebe0cf99796714ed0ca349d3b36b9b9 /.github
parentbuild: run the tests on all targets we support for a given host OS (diff)
downloadzig-sqlite-eb5f39770029d710123df2a3264929405c8cf38b.tar.gz
zig-sqlite-eb5f39770029d710123df2a3264929405c8cf38b.tar.xz
zig-sqlite-eb5f39770029d710123df2a3264929405c8cf38b.zip
ci: remove extraneous jobs
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml6
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5b3bf4d..a7cc6e0 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -39,9 +39,6 @@ jobs:
39 - name: Run Tests in memory 39 - name: Run Tests in memory
40 run: zig build test -Din_memory=true 40 run: zig build test -Din_memory=true
41 41
42 - name: Run Tests in memory using the bundled SQLite
43 run: zig build test -Din_memory=true -Duse_bundled
44
45 test-with-filesystem: 42 test-with-filesystem:
46 strategy: 43 strategy:
47 matrix: 44 matrix:
@@ -57,6 +54,3 @@ jobs:
57 54
58 - name: Run Tests with filesystem 55 - name: Run Tests with filesystem
59 run: zig build test -Din_memory=false 56 run: zig build test -Din_memory=false
60
61 - name: Run Tests with filesystem using the bundled SQLite
62 run: zig build test -Din_memory=false -Duse_bundled