From 20b1c726e3624f8b1c5495917cd37dc819ff7465 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sat, 23 Oct 2021 16:50:17 +0200 Subject: 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. --- .builds/debian-stable-amd64.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .builds/debian-stable-amd64.yml 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 @@ -image: debian/stable -arch: amd64 -packages: - - curl - - jq - - libsqlite3-dev - - qemu-user-binfmt -sources: - - https://github.com/vrischmann/zig-sqlite - -tasks: - - install_zig: | - curl -L -s "https://ziglang.org/download/index.json" | jq '.master["x86_64-linux"].tarball' -r >> ~/zig_master_url - curl -J -o ~/zig.tar.xz $(cat ~/zig_master_url) - tar xJf ~/zig.tar.xz - mv ~/zig-linux-* ~/zig-master - echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv - - - test_in_memory: | - cd zig-sqlite - TERM=dumb zig build test -Din_memory=true - - - test_in_memory_with_qemu: | - cd zig-sqlite - TERM=dumb zig build test -Din_memory=true -Denable_qemu=true -- cgit v1.2.3