summaryrefslogtreecommitdiff
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
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
-rw-r--r--.builds/alpine-edge-amd64.yml8
-rw-r--r--.builds/debian-stable-amd64.yml4
-rw-r--r--.builds/freebsd-latest-amd64.yml8
-rw-r--r--.github/workflows/main.yml6
4 files changed, 0 insertions, 26 deletions
diff --git a/.builds/alpine-edge-amd64.yml b/.builds/alpine-edge-amd64.yml
index 0869f6d..93595a7 100644
--- a/.builds/alpine-edge-amd64.yml
+++ b/.builds/alpine-edge-amd64.yml
@@ -25,11 +25,3 @@ tasks:
25 - test_filesystem: | 25 - test_filesystem: |
26 cd zig-sqlite 26 cd zig-sqlite
27 TERM=dumb zig build test -Din_memory=false 27 TERM=dumb zig build test -Din_memory=false
28
29 - test_in_memory_with_bundled_library: |
30 cd zig-sqlite
31 TERM=dumb zig build test -Din_memory=true -Duse_bundled
32
33 - test_filesystem_with_bundled_library: |
34 cd zig-sqlite
35 TERM=dumb zig build test -Din_memory=false -Duse_bundled
diff --git a/.builds/debian-stable-amd64.yml b/.builds/debian-stable-amd64.yml
index 813f8e3..7fc831c 100644
--- a/.builds/debian-stable-amd64.yml
+++ b/.builds/debian-stable-amd64.yml
@@ -24,7 +24,3 @@ tasks:
24 - test_filesystem: | 24 - test_filesystem: |
25 cd zig-sqlite 25 cd zig-sqlite
26 TERM=dumb zig build test -Din_memory=false 26 TERM=dumb zig build test -Din_memory=false
27
28 - test_with_bundled_library: |
29 cd zig-sqlite
30 TERM=dumb zig build test -Din_memory -Duse_bundled
diff --git a/.builds/freebsd-latest-amd64.yml b/.builds/freebsd-latest-amd64.yml
index a380814..f8c4202 100644
--- a/.builds/freebsd-latest-amd64.yml
+++ b/.builds/freebsd-latest-amd64.yml
@@ -24,11 +24,3 @@ tasks:
24 - test_filesystem: | 24 - test_filesystem: |
25 cd zig-sqlite 25 cd zig-sqlite
26 TERM=dumb zig build test -Din_memory=false 26 TERM=dumb zig build test -Din_memory=false
27
28 - test_in_memory_with_bundled_library: |
29 cd zig-sqlite
30 TERM=dumb zig build test -Din_memory=true -Duse_bundled
31
32 - test_filesystem_with_bundled_library: |
33 cd zig-sqlite
34 TERM=dumb zig build test -Din_memory=false -Duse_bundled
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