diff options
| author | 2021-08-18 22:52:02 +0200 | |
|---|---|---|
| committer | 2021-08-18 22:52:04 +0200 | |
| commit | 6e6e567cbe0944fdb6497e9771a58fe884740b9b (patch) | |
| tree | 96b71748d26e65155c8021c9072ca23cc26cb4bc /.github | |
| parent | ci: enable macOS (diff) | |
| download | zig-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 '.github')
| -rw-r--r-- | .github/workflows/main.yml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce03bf2..e1593b4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml | |||
| @@ -41,20 +41,3 @@ jobs: | |||
| 41 | 41 | ||
| 42 | - name: Run Tests in memory | 42 | - name: Run Tests in memory |
| 43 | run: zig build test -Din_memory=true | 43 | run: zig build test -Din_memory=true |
| 44 | |||
| 45 | test-with-filesystem: | ||
| 46 | strategy: | ||
| 47 | fail-fast: false | ||
| 48 | matrix: | ||
| 49 | os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 50 | runs-on: ${{ matrix.os }} | ||
| 51 | steps: | ||
| 52 | - uses: actions/checkout@v2 | ||
| 53 | with: | ||
| 54 | submodules: true | ||
| 55 | - uses: goto-bus-stop/setup-zig@v1 | ||
| 56 | with: | ||
| 57 | version: master | ||
| 58 | |||
| 59 | - name: Run Tests with filesystem | ||
| 60 | run: zig build test -Din_memory=false | ||