From eb5f39770029d710123df2a3264929405c8cf38b Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Mon, 22 Mar 2021 19:58:01 +0100 Subject: ci: remove extraneous jobs --- .builds/alpine-edge-amd64.yml | 8 -------- .builds/debian-stable-amd64.yml | 4 ---- .builds/freebsd-latest-amd64.yml | 8 -------- .github/workflows/main.yml | 6 ------ 4 files changed, 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: - test_filesystem: | cd zig-sqlite TERM=dumb zig build test -Din_memory=false - - - test_in_memory_with_bundled_library: | - cd zig-sqlite - TERM=dumb zig build test -Din_memory=true -Duse_bundled - - - test_filesystem_with_bundled_library: | - cd zig-sqlite - 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: - test_filesystem: | cd zig-sqlite TERM=dumb zig build test -Din_memory=false - - - test_with_bundled_library: | - cd zig-sqlite - 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: - test_filesystem: | cd zig-sqlite TERM=dumb zig build test -Din_memory=false - - - test_in_memory_with_bundled_library: | - cd zig-sqlite - TERM=dumb zig build test -Din_memory=true -Duse_bundled - - - test_filesystem_with_bundled_library: | - cd zig-sqlite - 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: - name: Run Tests in memory run: zig build test -Din_memory=true - - name: Run Tests in memory using the bundled SQLite - run: zig build test -Din_memory=true -Duse_bundled - test-with-filesystem: strategy: matrix: @@ -57,6 +54,3 @@ jobs: - name: Run Tests with filesystem run: zig build test -Din_memory=false - - - name: Run Tests with filesystem using the bundled SQLite - run: zig build test -Din_memory=false -Duse_bundled -- cgit v1.2.3