mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
efe4083dce
This was only used with expect, which is long gone from the codebase.
25 lines
540 B
YAML
25 lines
540 B
YAML
image: alpine/edge
|
|
packages:
|
|
- cmake
|
|
- ninja
|
|
- ncurses-dev
|
|
- pcre2-dev
|
|
- python3
|
|
- py-pip
|
|
sources:
|
|
- https://git.sr.ht/~faho/fish
|
|
tasks:
|
|
- build: |
|
|
pip3 install pexpect
|
|
cd fish
|
|
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
|
|
ninja
|
|
- test: |
|
|
cd fish/build
|
|
env ninja test
|