diff options
| author | 2021-01-24 01:18:37 +0100 | |
|---|---|---|
| committer | 2021-01-24 01:23:09 +0100 | |
| commit | 7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd (patch) | |
| tree | 8eadeaad1ab8440d104d3d66952d8377bbdaa9d0 /.builds/debian-stable-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/debian-stable-amd64.yml')
| -rw-r--r-- | .builds/debian-stable-amd64.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.builds/debian-stable-amd64.yml b/.builds/debian-stable-amd64.yml index d129c03..03ec7d9 100644 --- a/.builds/debian-stable-amd64.yml +++ b/.builds/debian-stable-amd64.yml | |||
| @@ -17,16 +17,16 @@ tasks: | |||
| 17 | mv ~/zig-linux-* ~/zig-master | 17 | mv ~/zig-linux-* ~/zig-master |
| 18 | echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv | 18 | echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv |
| 19 | 19 | ||
| 20 | - test: | | 20 | - test_in_memory: | |
| 21 | cd zig-sqlite | 21 | cd zig-sqlite |
| 22 | TERM=dumb zig build test | 22 | TERM=dumb zig build test -Din_memory=true |
| 23 | 23 | ||
| 24 | - test_in_memory: | | 24 | - test_filesystem: | |
| 25 | cd zig-sqlite | 25 | cd zig-sqlite |
| 26 | TERM=dumb zig build test -Din_memory | 26 | TERM=dumb zig build test -Din_memory=false |
| 27 | 27 | ||
| 28 | # TODO(vincent): This fails with Debian for some reason | 28 | # TODO(vincent): This fails with Debian for some reason |
| 29 | # | 29 | # |
| 30 | # - test_with_bundled_library: | | 30 | # - test_with_bundled_library: | |
| 31 | # cd zig-sqlite | 31 | # cd zig-sqlite |
| 32 | # TERM=dumb zig build test -Din_memory -Duse_bundled \ No newline at end of file | 32 | # TERM=dumb zig build test -Din_memory -Duse_bundled |