From 6ecbfa813df94a80e09523fc2da1fd005d77af13 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Thu, 5 Nov 2020 00:09:22 +0100 Subject: [PATCH] try to fix github workflows --- .github/workflows/main.yml | 5 ++++- .github/workflows/mingw.yml | 2 +- .github/workflows/miniupnpd.yml | 8 ++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 332c140..9907e6c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ # 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 # events but only for the master branch @@ -25,5 +25,8 @@ jobs: - name: build miniupnpc run: make -C miniupnpc all check + - name: install packages + run: sudo apt-get install libnfnetlink-dev + - name: build minissdpd run: make -C minissdpd all check diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index ecb5ac6..78eee4e 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -1,6 +1,6 @@ # 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 # events but only for the master branch diff --git a/.github/workflows/miniupnpd.yml b/.github/workflows/miniupnpd.yml index 8591e3e..56330fa 100644 --- a/.github/workflows/miniupnpd.yml +++ b/.github/workflows/miniupnpd.yml @@ -1,6 +1,6 @@ # 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 # events but only for the master branch @@ -28,13 +28,13 @@ jobs: - name: build miniupnpd(iptables) run: | mkdir -p miniupnpd/build-ipt - cd miniupnpd/build/ipt + cd miniupnpd/build-ipt ../configure --ipv6 --igd2 --strict --portinuse --firewall=iptables make all check - name: build miniupnpd(nftables) run: | - mkdir -p miniupnpd/build-ipt - cd miniupnpd/build/ipt + mkdir -p miniupnpd/build-nft + cd miniupnpd/build-nft ../configure --ipv6 --igd2 --strict --portinuse --firewall=nftables make all check