mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 06:46:12 +08:00
18a9141fb4
I should actually look up the syntax one of these days.
24 lines
553 B
YAML
24 lines
553 B
YAML
image: netbsd/latest
|
|
packages:
|
|
- ncurses
|
|
- gettext
|
|
- tcl-expect
|
|
- cmake
|
|
- gmake
|
|
- pcre2
|
|
tasks:
|
|
- build: |
|
|
git -c http.sslVerify=false clone https://git.sr.ht/~faho/fish
|
|
cd fish
|
|
mkdir build || :
|
|
cd build
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_DATADIR=share \
|
|
-DCMAKE_INSTALL_DOCDIR=share/doc/fish \
|
|
-DCMAKE_INSTALL_SYSCONFDIR=/etc
|
|
gmake -j2
|
|
- test: |
|
|
cd fish/build
|
|
gmake test SHOW_INTERACTIVE_LOG=1
|