forked from microsoft/SysmonForLinux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
42 lines (35 loc) · 970 Bytes
/
azure-pipelines.yml
File metadata and controls
42 lines (35 loc) · 970 Bytes
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
# Azure build pipelines for Sysmon
resources:
repositories:
- repository: Sysmon
type: github
endpoint: sysinternals
name: sysinternals/SysmonforLinux
trigger:
branches:
include:
- release/*
- main
exclude:
- dev/*
- test/*
pr:
- main
stages:
- stage: "Build"
jobs:
- job: "Build_Sysmon_Ubuntu_20_04"
pool: "Sysmon-Ubuntu-20.04-Pool"
steps:
- checkout: Sysmon
submodules: true
- script: |
wget -q https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
apt -y update
apt -y install sysinternalsebpf
displayName: "Install Sysinternalsebpf dependency"
- template: templates/build.yaml
- script: |
apt -y remove sysinternalsebpf
displayName: "Remove Sysinternalsebpf dependency"