From 4357f941feae9024605fbabf6b549d242edcd9b5 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Tue, 11 May 2021 09:34:36 -0400 Subject: [PATCH] Add CI --- .builds/glibc.yml | 13 +++++++++++++ .builds/musl.yml | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .builds/glibc.yml create mode 100644 .builds/musl.yml diff --git a/.builds/glibc.yml b/.builds/glibc.yml new file mode 100644 index 0000000..80c09d6 --- /dev/null +++ b/.builds/glibc.yml @@ -0,0 +1,13 @@ +image: archlinux +packages: + - scdoc +sources: + - https://git.sr.ht/~armaan/libacheam +triggers: + - action: email + condition: failure + to: me@armaanb.net +tasks: + - build: | + cd libacheam + make test diff --git a/.builds/musl.yml b/.builds/musl.yml new file mode 100644 index 0000000..c886316 --- /dev/null +++ b/.builds/musl.yml @@ -0,0 +1,13 @@ +image: alpine/edge +packages: + - scdoc +sources: + - https://git.sr.ht/~armaan/libacheam +triggers: + - action: email + condition: failure + to: me@armaanb.net +tasks: + - build: | + cd libacheam + make test -- 2.39.2