miniupnp/.gitlab-ci.yml

28 lines
760 B
YAML
Raw Normal View History

before_script:
- >
apt-get update -qq && apt-get install -y -qq iptables-dev libevent-dev
libnfnetlink-dev uuid-dev make gcc gcc-mingw-w64-i686 mingw-w64-tools
2019-09-24 09:29:39 +00:00
libnftnl-dev libmnl-dev libssl-dev net-tools doxygen graphviz
stages:
- build
job_miniupnpd:
stage: build
script:
- "cd miniupnpd"
2020-04-28 22:46:00 +00:00
- "./configure"
- "make -j3 && make check"
- "make dox"
- "make clean"
- "./configure --firewall=nftables"
- "make -j3"
2018-07-15 12:22:19 +00:00
# i686-w64-mingw32-gcc
job_miniupnpc:
stage: build
script:
- "cd miniupnpc && make -j3 && make check"
- "make clean"
2018-07-15 12:22:19 +00:00
- "make -f Makefile.mingw DLLWRAP=i686-w64-mingw32-dllwrap CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar"