mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
Add NetBSD on sr.ht
This commit is contained in:
parent
c242469e8b
commit
7eb6bee793
1 changed files with 24 additions and 0 deletions
24
.builds/netbsd.yml
Normal file
24
.builds/netbsd.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
image: netbsd/latest
|
||||
packages:
|
||||
- ncurses
|
||||
- gettext
|
||||
- tcl-expect
|
||||
- cmake
|
||||
- gmake
|
||||
- pcre2
|
||||
tasks:
|
||||
- build: |
|
||||
# We can't use sources because we don't have the certificate store set up.
|
||||
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
|
Loading…
Reference in a new issue