commit dbed6d0e75f18ae8128af4482df919f9e2255ca6 parent f01c8eed4e43d46da525e2a87fc529f94cecc809 Author: Ember Sawady <ecs@d2evs.net> Date: Sun, 31 Dec 2023 05:37:50 +0000 update ci for harec config.mk Diffstat:
M | .builds/alpine.yml | | | 5 | ++--- |
M | .builds/freebsd.yml | | | 5 | ++--- |
M | .builds/openbsd.yml | | | 5 | ++--- |
3 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/.builds/alpine.yml b/.builds/alpine.yml @@ -22,9 +22,8 @@ tasks: make -j2 PREFIX=/usr sudo make install PREFIX=/usr - harec: | - mkdir harec/build - cd harec/build - ../configure --prefix=/usr + cd harec + cp configs/linux.mk config.mk make -j2 sudo make install - hare: | diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -12,9 +12,8 @@ tasks: make -j2 CC=cc PREFIX=/usr sudo make install PREFIX=/usr - harec: | - mkdir harec/build - cd harec/build - ../configure --prefix=/usr + cd harec + cp configs/freebsd.mk config.mk make -j2 sudo make install - hare: | diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml @@ -13,9 +13,8 @@ tasks: make -j2 PREFIX=/usr doas make install PREFIX=/usr - harec: | - mkdir harec/build - cd harec/build - ../configure --prefix=/usr + cd harec + cp configs/openbsd.mk config.mk make -j2 doas make install - hare: |