From 3e31de295a712b4896facada4c966e45c36b9a70 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 7 Jan 2024 02:46:05 +0100 Subject: [PATCH] Update alpine build config --- .builds/alpine.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.builds/alpine.yml b/.builds/alpine.yml index 9737f24ec..c09ecad14 100644 --- a/.builds/alpine.yml +++ b/.builds/alpine.yml @@ -1,25 +1,27 @@ image: alpine/edge packages: + - cargo + - clang17-libclang - cmake - - ninja - ncurses-dev + - ninja - pcre2-dev + - py3-pexpect - python3 - - py-pip + - rust sources: - - https://git.sr.ht/~faho/fish + - https://github.com/fish-shell/fish-shell tasks: - build: | - pip3 install pexpect - cd fish - mkdir build || : + cd fish-shell + mkdir build cd build cmake -G Ninja .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_DATADIR=share \ - -DCMAKE_INSTALL_DOCDIR=share/doc/fish \ - -DCMAKE_INSTALL_SYSCONFDIR=/etc + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_DATADIR=share \ + -DCMAKE_INSTALL_DOCDIR=share/doc/fish \ + -DCMAKE_INSTALL_SYSCONFDIR=/etc ninja - test: | - cd fish/build + cd fish-shell/build env ninja test