try to fix github workflows

This commit is contained in:
Thomas Bernard 2020-11-05 00:09:22 +01:00
parent 552c6c7297
commit 6ecbfa813d
3 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: CI name: miniupnpc, minissdpd
# Controls when the action will run. Triggers the workflow on push or pull request # Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch # events but only for the master branch
@ -25,5 +25,8 @@ jobs:
- name: build miniupnpc - name: build miniupnpc
run: make -C miniupnpc all check run: make -C miniupnpc all check
- name: install packages
run: sudo apt-get install libnfnetlink-dev
- name: build minissdpd - name: build minissdpd
run: make -C minissdpd all check run: make -C minissdpd all check

View File

@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: CI name: mingw
# Controls when the action will run. Triggers the workflow on push or pull request # Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch # events but only for the master branch

View File

@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: CI name: miniupnpd
# Controls when the action will run. Triggers the workflow on push or pull request # Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch # events but only for the master branch
@ -28,13 +28,13 @@ jobs:
- name: build miniupnpd(iptables) - name: build miniupnpd(iptables)
run: | run: |
mkdir -p miniupnpd/build-ipt mkdir -p miniupnpd/build-ipt
cd miniupnpd/build/ipt cd miniupnpd/build-ipt
../configure --ipv6 --igd2 --strict --portinuse --firewall=iptables ../configure --ipv6 --igd2 --strict --portinuse --firewall=iptables
make all check make all check
- name: build miniupnpd(nftables) - name: build miniupnpd(nftables)
run: | run: |
mkdir -p miniupnpd/build-ipt mkdir -p miniupnpd/build-nft
cd miniupnpd/build/ipt cd miniupnpd/build-nft
../configure --ipv6 --igd2 --strict --portinuse --firewall=nftables ../configure --ipv6 --igd2 --strict --portinuse --firewall=nftables
make all check make all check