diff options
| author | 2021-10-23 16:50:17 +0200 | |
|---|---|---|
| committer | 2021-10-23 16:50:19 +0200 | |
| commit | 20b1c726e3624f8b1c5495917cd37dc819ff7465 (patch) | |
| tree | 5f01b0e15efed57fa3ffd136bb6b8e6a89df95f8 /.builds | |
| parent | query: use lowercase for enum fields (diff) | |
| download | zig-sqlite-20b1c726e3624f8b1c5495917cd37dc819ff7465.tar.gz zig-sqlite-20b1c726e3624f8b1c5495917cd37dc819ff7465.tar.xz zig-sqlite-20b1c726e3624f8b1c5495917cd37dc819ff7465.zip | |
ci: remove the debian amd64 build
amd64 on a "standard" distribution using gblic is already tested with
Ubuntu using GitHub Actions.
The plan for the CI is to switch to GitHub Actions completely when and
where possible.
Diffstat (limited to '.builds')
| -rw-r--r-- | .builds/debian-stable-amd64.yml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/.builds/debian-stable-amd64.yml b/.builds/debian-stable-amd64.yml deleted file mode 100644 index d8b2337..0000000 --- a/.builds/debian-stable-amd64.yml +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | image: debian/stable | ||
| 2 | arch: amd64 | ||
| 3 | packages: | ||
| 4 | - curl | ||
| 5 | - jq | ||
| 6 | - libsqlite3-dev | ||
| 7 | - qemu-user-binfmt | ||
| 8 | sources: | ||
| 9 | - https://github.com/vrischmann/zig-sqlite | ||
| 10 | |||
| 11 | tasks: | ||
| 12 | - install_zig: | | ||
| 13 | curl -L -s "https://ziglang.org/download/index.json" | jq '.master["x86_64-linux"].tarball' -r >> ~/zig_master_url | ||
| 14 | curl -J -o ~/zig.tar.xz $(cat ~/zig_master_url) | ||
| 15 | tar xJf ~/zig.tar.xz | ||
| 16 | mv ~/zig-linux-* ~/zig-master | ||
| 17 | echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv | ||
| 18 | |||
| 19 | - test_in_memory: | | ||
| 20 | cd zig-sqlite | ||
| 21 | TERM=dumb zig build test -Din_memory=true | ||
| 22 | |||
| 23 | - test_in_memory_with_qemu: | | ||
| 24 | cd zig-sqlite | ||
| 25 | TERM=dumb zig build test -Din_memory=true -Denable_qemu=true | ||