-
Notifications
You must be signed in to change notification settings - Fork 267
/
azure-pipelines.yml
67 lines (60 loc) · 1.85 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 2019 Lex Li
# Copyright 2020-2021 Chris Morgan <chmorgan@gmail.com>
# Copyright 2020-2022 Ayoub Kaanich <kayoub5@live.com>
# SPDX-License-Identifier: MIT
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
trigger:
- master
pr:
autoCancel: true
branches:
include:
- '*' # quote since "*" is a YAML reserved character
jobs:
- job: linux
pool:
vmImage: ubuntu-20.04
steps:
- script: sudo -E bash scripts/install-libpcap.sh
- script: sudo -E bash scripts/install-tap.sh
- script: sudo -E bash scripts/test.sh
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)
- job: macos
pool:
vmImage: macOS-12
steps:
- script: sudo -E bash scripts/install-libpcap.sh
- script: sudo sysctl -w net.inet.udp.maxdgram=65535
- script: sudo -E bash scripts/test.sh
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)
# This CI job is for testing of x86 architecture compatibility
- job: windows_2022_x86
pool:
vmImage: windows-2022
steps:
- pwsh: ./scripts/Install-windows.ps1
- pwsh: ./scripts/Install-npcap.ps1
env:
npcap_oem_key: $(npcap_oem_key)
- pwsh: .\scripts\install-winpkfilter.ps1
# NOTE: Remove filter when npcap has rpcapd support
- script: bash scripts/test.sh --filter "TestCategory!=RemotePcap" -r win-x86
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)
- job: windows_2022_npcap
pool:
vmImage: windows-2022
steps:
- pwsh: ./scripts/Install-windows.ps1
- pwsh: ./scripts/Install-npcap.ps1
env:
npcap_oem_key: $(npcap_oem_key)
- pwsh: .\scripts\install-winpkfilter.ps1
# NOTE: Remove filter when npcap has rpcapd support
- script: bash scripts/test.sh --filter "TestCategory!=RemotePcap"
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)