~emersion/mrsh-dev

imrsh: build: Add builds.sr.ht script using arch image v1 PROPOSED

Zach DeCook: 1
 build: Add builds.sr.ht script using arch image

 1 files changed, 21 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~emersion/mrsh-dev/patches/15259/mbox | git am -3
Learn more about email & git

[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?