From 17c5dccdc792286e1bc24b5a89bdc2bd2c55aa87 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Wed, 23 Dec 2020 02:16:56 +0100 Subject: ci: add the build manifest for debian/buster aarch64 --- .builds/debian-stable-aarch64.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .builds/debian-stable-aarch64.yml diff --git a/.builds/debian-stable-aarch64.yml b/.builds/debian-stable-aarch64.yml new file mode 100644 index 0000000..8c4464e --- /dev/null +++ b/.builds/debian-stable-aarch64.yml @@ -0,0 +1,27 @@ +image: debian/stable +arch: arm64 +packages: + - curl + - jq + - libsqlite3-dev +sources: + - https://git.sr.ht/~vrischmann/zig-sqlite +secrets: + - ce266aec-9be4-4136-b53e-dc12a62a399b + +tasks: + - install_zig: | + curl -L -s "https://ziglang.org/download/index.json" | jq '.master["aarch64-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_with_system_library: | + cd zig-sqlite + TERM=dumb zig build test -Dis_ci + +triggers: + - action: email + condition: failure + to: "Vincent Rischmann " -- cgit v1.2.3