forked from miniupnp/miniupnp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
27 lines (24 loc) · 760 Bytes
/
.gitlab-ci.yml
File metadata and controls
27 lines (24 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
libnftnl-dev libmnl-dev libssl-dev net-tools doxygen graphviz
stages:
- build
job_miniupnpd:
stage: build
script:
- "cd miniupnpd"
- "./configure"
- "make -j3 && make check"
- "make dox"
- "make clean"
- "./configure --firewall=nftables"
- "make -j3"
# i686-w64-mingw32-gcc
job_miniupnpc:
stage: build
script:
- "cd miniupnpc && make -j3 && make check"
- "make clean"
- "make -f Makefile.mingw DLLWRAP=i686-w64-mingw32-dllwrap CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar"