You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/05/10 13:16:07 UTC

[plc4x] branch develop updated: chore(build): install nmap on windows (for libpcap)

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new eafb44f2c1 chore(build): install nmap on windows (for libpcap)
eafb44f2c1 is described below

commit eafb44f2c1e0078f3d2d173a155ed1826cecdd6d
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Wed May 10 15:15:59 2023 +0200

    chore(build): install nmap on windows (for libpcap)
---
 .github/workflows/go-platform.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/go-platform.yml b/.github/workflows/go-platform.yml
index 432d1080a8..d43711fd11 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -55,6 +55,10 @@ jobs:
         if: matrix.os == 'macos-latest'
         run: brew install libpcap
 
+      - name: Install libpcap for windows
+        if: matrix.os == 'windows-latest'
+        run: choco install -y nmap
+
       - name: Checkout repository
         uses: actions/checkout@v3