summaryrefslogtreecommitdiff
path: root/.builds
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-10-23 16:50:17 +0200
committerGravatar Vincent Rischmann2021-10-23 16:50:19 +0200
commit20b1c726e3624f8b1c5495917cd37dc819ff7465 (patch)
tree5f01b0e15efed57fa3ffd136bb6b8e6a89df95f8 /.builds
parentquery: use lowercase for enum fields (diff)
downloadzig-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.yml25
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 @@
1image: debian/stable
2arch: amd64
3packages:
4 - curl
5 - jq
6 - libsqlite3-dev
7 - qemu-user-binfmt
8sources:
9 - https://github.com/vrischmann/zig-sqlite
10
11tasks:
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