diff options
author | Guy Harris <gharris@sonic.net> | 2023-06-30 12:30:24 -0700 |
---|---|---|
committer | Guy Harris <gharris@sonic.net> | 2023-06-30 12:30:24 -0700 |
commit | de8f86b4841c00e2cddcedd5b8b4153e7ef0b0e1 (patch) | |
tree | 1c62659ec1de4a7b717bddae6f0b25e1079b68a1 | |
parent | 74140ace97284e7187a667f52ed0f5dd8977f6df (diff) |
Cirrus CI: install Npcap and AirPcap SDKs, try a fancier command.
It looks as if we have a Bourne shell here....
Also, squelch progress reports in Curl, to avoid noise.
-rw-r--r-- | .cirrus.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 9947f714..61d57b8a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -71,10 +71,14 @@ windows_task: - win_flex --version - win_bison --version - choco install --no-progress -y curl - - curl https://www.winpcap.org/install/bin/WpdPack_4_1_2.zip >WpdPack_4_1_2.zip + - curl -s https://www.winpcap.org/install/bin/WpdPack_4_1_2.zip >WpdPack_4_1_2.zip - 7z x .\WpdPack_4_1_2.zip -oc:\projects\libpcap\Win32 + - curl -s https://npcap.com/dist/npcap-sdk-1.13.zip >npcap-sdk-1.13.zip + - 7z x .\npcap-sdk-1.13.zip -oc:\projects\libpcap\Win32\npcap-sdk + - curl -s https://support.riverbed.com/bin/support/download?sid=l3vk3eu649usgu3rj60uncjqqu >AirPcap_Devpack.zip + - 7z x .\AirPcap_Devpack.zip -oc:\projects\libpcap\Win32 script: - - sh -c "env" + - sh -c "echo Hello | sed 's/Hello/Goodbye/' >C:\projects\output; cat C:\projects\output" coverity_task: name: Coverity Scan |