Add NetBSD on sr.ht

This commit is contained in:
Fabian Homborg 2019-02-18 15:22:47 +01:00
parent c242469e8b
commit 7eb6bee793

24
.builds/netbsd.yml Normal file
View 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