[PATCH imrsh] build: Add builds.sr.ht script using arch image
Export this patch
---
.build.yml | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
create mode 100644 .build.yml
diff --git a/.build.yml b/.build.yml
new file mode 100644
index 0000000..76988dc
--- /dev/null
+++ b/.build.yml
@@ -0,0 +1,21 @@
+image: archlinux
+packages:
+ - meson
+ - pkgconf
+ - libtickit
+sources:
+ - https://git.sr.ht/~emersion/mrsh
+ - https://git.sr.ht/~sircmpwn/imrsh
+tasks:
+ - dependencies: |
+ cd mrsh
+ ./configure
+ make
+ sudo make install
+ - build: |
+ cd imrsh
+ mkdir subprojects
+ ln -s ../../mrsh subprojects/
+ meson build
+ ninja -C build
+ sudo ninja -C build install
--
2.29.2
Can you re-roll this with alpine instead?