From 97f1098710f15cbcf5d22e2b142183ad914b496d Mon Sep 17 00:00:00 2001 From: Pontus Stenetorp Date: Sun, 11 Apr 2021 05:23:34 +0000 Subject: [PATCH] nix: sourcehut build service manifests --- .builds/debian.yml | 8 ++++++++ .builds/nixos.yml | 10 ++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .builds/debian.yml create mode 100644 .builds/nixos.yml diff --git a/.builds/debian.yml b/.builds/debian.yml new file mode 100644 index 0000000000..f4d8844039 --- /dev/null +++ b/.builds/debian.yml @@ -0,0 +1,8 @@ +# vim: set ts=8 sw=2 sts=2 et: + +image: debian/stable +tasks: + - build: | + make -C julia-nix VERBOSE=1 + - test: | + make -C julia-nix VERBOSE=1 testall diff --git a/.builds/nixos.yml b/.builds/nixos.yml new file mode 100644 index 0000000000..825d049efa --- /dev/null +++ b/.builds/nixos.yml @@ -0,0 +1,10 @@ +# vim: set ts=8 sw=2 sts=2 et: + +image: nixos/latest +tasks: + - build: | + cd julia-nix + nix-shell --pure --command 'make VERBOSE=1' + - test: | + cd julia-nix + nix-shell --pure --command 'make VERBOSE=1 testall' -- 2.45.2