.gitlab-ci.yml: test make install

This commit is contained in:
Thomas Bernard 2021-09-30 22:58:15 +02:00
parent edb8f84d57
commit b7186a76a0
No known key found for this signature in database
GPG Key ID: DB511043A31ACAAF
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,7 @@ miniupnpd_iptables:
- "cd miniupnpd" - "cd miniupnpd"
- "./configure || exit 1" - "./configure || exit 1"
- "make -j3 && make check || exit 1" - "make -j3 && make check || exit 1"
- "make install DESTDIR=/tmp/miniupnpd_iptables_install || exit 1"
- "make dox" - "make dox"
miniupnpd_nftables: miniupnpd_nftables:
@ -30,6 +31,7 @@ miniupnpd_nftables:
- "cd miniupnpd" - "cd miniupnpd"
- "./configure --firewall=nftables || exit 1" - "./configure --firewall=nftables || exit 1"
- "make -j3 && make check || exit 1" - "make -j3 && make check || exit 1"
- "make install DESTDIR=/tmp/miniupnpd_nftables_install || exit 1"
- "make dox" - "make dox"
# i686-w64-mingw32-gcc # i686-w64-mingw32-gcc
@ -43,5 +45,6 @@ miniupnpc:
script: script:
- "cd miniupnpc" - "cd miniupnpc"
- "make -j3 && make check || exit 1" - "make -j3 && make check || exit 1"
- "make install DESTDIR=/tmp/miniupnpc_install || exit 1"
- "make clean || exit 1" - "make clean || exit 1"
- "make -f Makefile.mingw DLLWRAP=i686-w64-mingw32-dllwrap WINDRES=i686-w64-mingw32-windres CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar" - "make -f Makefile.mingw DLLWRAP=i686-w64-mingw32-dllwrap WINDRES=i686-w64-mingw32-windres CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar"