mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
7778e62bd7
Littlecheck needs it.
24 lines
531 B
YAML
24 lines
531 B
YAML
image: alpine/edge
|
|
packages:
|
|
- cmake
|
|
- ninja
|
|
- ncurses-dev
|
|
- pcre2-dev
|
|
- expect
|
|
- python
|
|
sources:
|
|
- https://git.sr.ht/~faho/fish
|
|
tasks:
|
|
- build: |
|
|
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 SHOW_INTERACTIVE_LOG=1 ninja test
|