From 7c8c72017e5ccfc30726c0d14c1c966217dd6c93 Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov Date: Thu, 4 Mar 2021 00:00:00 +0000 Subject: [PATCH] Configure Sourcehut continous integration --- .builds/alpine.yml | 10 ++++++++++ .builds/nixos.yml | 7 +++++++ .builds/openbsd.yml | 10 ++++++++++ 3 files changed, 27 insertions(+) create mode 100644 .builds/alpine.yml create mode 100644 .builds/nixos.yml create mode 100644 .builds/openbsd.yml diff --git a/.builds/alpine.yml b/.builds/alpine.yml new file mode 100644 index 0000000..581f17d --- /dev/null +++ b/.builds/alpine.yml @@ -0,0 +1,10 @@ +image: alpine/latest +packages: + - ncurses-dev + - make +sources: + - https://github.com/martanne/dvtm +tasks: + - build: | + cd dvtm + make diff --git a/.builds/nixos.yml b/.builds/nixos.yml new file mode 100644 index 0000000..749a5b8 --- /dev/null +++ b/.builds/nixos.yml @@ -0,0 +1,7 @@ +image: nixos/latest +sources: + - https://github.com/martanne/dvtm +tasks: + - build: | + cd dvtm + nix-shell -p ncurses -p gnumake --run make diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml new file mode 100644 index 0000000..9f393d3 --- /dev/null +++ b/.builds/openbsd.yml @@ -0,0 +1,10 @@ +image: openbsd/latest +packages: + - ncurses + - gmake +sources: + - https://github.com/martanne/dvtm +tasks: + - build: | + cd dvtm + gmake CPPFLAGS= -- 2.38.5