diff options
| author | 2021-01-24 01:18:37 +0100 | |
|---|---|---|
| committer | 2021-01-24 01:23:09 +0100 | |
| commit | 7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd (patch) | |
| tree | 8eadeaad1ab8440d104d3d66952d8377bbdaa9d0 /.builds/alpine-edge-amd64.yml | |
| parent | build: default to in-memory tests (diff) | |
| download | zig-sqlite-7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd.tar.gz zig-sqlite-7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd.tar.xz zig-sqlite-7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd.zip | |
ci: test both in-memory and filesystem
Diffstat (limited to '.builds/alpine-edge-amd64.yml')
| -rw-r--r-- | .builds/alpine-edge-amd64.yml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/.builds/alpine-edge-amd64.yml b/.builds/alpine-edge-amd64.yml index e11638d..0869f6d 100644 --- a/.builds/alpine-edge-amd64.yml +++ b/.builds/alpine-edge-amd64.yml | |||
| @@ -18,14 +18,18 @@ tasks: | |||
| 18 | mv ~/zig-linux-* ~/zig-master | 18 | mv ~/zig-linux-* ~/zig-master |
| 19 | echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv | 19 | echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv |
| 20 | 20 | ||
| 21 | - test: | | 21 | - test_in_memory: | |
| 22 | cd zig-sqlite | 22 | cd zig-sqlite |
| 23 | TERM=dumb zig build test | 23 | TERM=dumb zig build test -Din_memory=true |
| 24 | 24 | ||
| 25 | - test_in_memory: | | 25 | - test_filesystem: | |
| 26 | cd zig-sqlite | ||
| 27 | TERM=dumb zig build test -Din_memory=false | ||
| 28 | |||
| 29 | - test_in_memory_with_bundled_library: | | ||
| 26 | cd zig-sqlite | 30 | cd zig-sqlite |
| 27 | TERM=dumb zig build test -Din_memory | 31 | TERM=dumb zig build test -Din_memory=true -Duse_bundled |
| 28 | 32 | ||
| 29 | - test_with_bundled_library: | | 33 | - test_filesystem_with_bundled_library: | |
| 30 | cd zig-sqlite | 34 | cd zig-sqlite |
| 31 | TERM=dumb zig build test -Din_memory -Duse_bundled \ No newline at end of file | 35 | TERM=dumb zig build test -Din_memory=false -Duse_bundled |