try to fix github workflows
This commit is contained in:
parent
552c6c7297
commit
6ecbfa813d
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue