Skip to content

Clean dotnet install logic #499

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

Merged
merged 5 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
image: ubuntu-2004:202201-02
steps:
- checkout
- run: sudo -E bash scripts/install-dotnet.sh --install-dir /usr/local/bin
- run: sudo -E bash scripts/install-tap.sh
# Download and compile latest libpcap
- when:
Expand All @@ -58,7 +57,6 @@ jobs:
resource_class: arm.medium
steps:
- checkout
- run: sudo -E bash scripts/install-dotnet.sh --install-dir /usr/local/bin
- run: sudo -E bash scripts/install-tap.sh
- run: sudo apt-get install libpcap0.8
- run: sudo -E bash scripts/test.sh
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Install .net dependencies
run: dotnet restore
- name: Install libpcap
run: sudo -E bash scripts/install-libpcap.sh
- name: Install tap
Expand Down
47 changes: 0 additions & 47 deletions .semaphore/semaphore.yml

This file was deleted.

3 changes: 0 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
pool:
vmImage: macOS-12
steps:
- script: sudo -E bash scripts/install-dotnet.sh
- script: sudo -E bash scripts/install-libpcap.sh
- script: sudo sysctl -w net.inet.udp.maxdgram=65535
- script: sudo -E bash scripts/test.sh
Expand All @@ -48,7 +47,6 @@ jobs:
env:
npcap_oem_key: $(npcap_oem_key)
- pwsh: .\scripts\install-winpkfilter.ps1
- script: dotnet restore -s https://api.nuget.org/v3/index.json
# NOTE: Remove filter when npcap has rpcapd support
- script: bash scripts/test.sh --filter "TestCategory!=RemotePcap" -r win-x86
env:
Expand All @@ -63,7 +61,6 @@ jobs:
env:
npcap_oem_key: $(npcap_oem_key)
- pwsh: .\scripts\install-winpkfilter.ps1
- script: dotnet restore -s https://api.nuget.org/v3/index.json
# NOTE: Remove filter when npcap has rpcapd support
- script: bash scripts/test.sh --filter "TestCategory!=RemotePcap"
env:
Expand Down
10 changes: 0 additions & 10 deletions scripts/install-dotnet.sh

This file was deleted.

1 change: 0 additions & 1 deletion scripts/install-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
# Copyright 2022 Ayoub Kaanich <[email protected]>
# SPDX-License-Identifier: MIT

choco install -y dotnet-sdk --version=6.0.300
choco install -y tapwindows
choco install -y procdump
Loading