Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Ubuntu 18 from appveyor.yml. #497

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 18 additions & 31 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

environment:
# This key is encrypted using secdev's appveyor private key,
# dissected only on master builds (not PRs) and is used during
Expand All @@ -15,37 +14,25 @@ branches:

image:
- Visual Studio 2022
- Ubuntu1804
- macos

for:
-
matrix:
only:
- image: Visual Studio 2022
install:
- ps: .\scripts\install-windows.ps1
- ps: .\scripts\Install-npcap.ps1
- ps: .\scripts\install-winpkfilter.ps1
build_script:
- dotnet build -c Release
test_script:
- bash scripts/test.sh --filter "TestCategory!=RemotePcap&TestCategory!=WinDivert"

-
matrix:
only:
- image: Ubuntu1804
install:
- sudo -E bash scripts/install-libpcap.sh
test_script:
- sudo -E bash scripts/test.sh --filter "TestCategory!=Tunneling"
- matrix:
only:
- image: Visual Studio 2022
install:
- ps: .\scripts\install-windows.ps1
- ps: .\scripts\Install-npcap.ps1
- ps: .\scripts\install-winpkfilter.ps1
build_script:
- dotnet build -c Release
test_script:
- bash scripts/test.sh --filter "TestCategory!=RemotePcap&TestCategory!=WinDivert"

-
matrix:
only:
- image: macos
install:
- sudo -E bash scripts/install-libpcap.sh
test_script:
- sudo -E bash scripts/test.sh
- matrix:
only:
- image: macos
install:
- sudo -E bash scripts/install-libpcap.sh
test_script:
- sudo -E bash scripts/test.sh
Loading