forked from microsoft/SysmonForLinux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
53 lines (44 loc) · 1.08 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
# Azure build pipelines for Sysmon
resources:
repositories:
- repository: Sysmon
type: github
endpoint: sysinternals
name: sysinternals/SysmonforLinux
- repository: SysinternalsEBPF
type: github
endpoint: sysinternals
name: sysinternals/SysinternalsEBPF
trigger:
branches:
include:
- release/*
- main
exclude:
- dev/*
- test/*
pr:
- main
stages:
- stage: "Build"
jobs:
- job: "Build_Sysmon_Ubuntu"
pool:
name: "Sysinternals-for-Linux-AME"
demands:
- ImageOverride -equals sysmon-ubuntu-build-agent
steps:
- checkout: self
submodules: true
- checkout: SysinternalsEBPF
- template: templates/build.yaml@SysinternalsEBPF
parameters:
srcFolder: 'SysinternalsEBPF'
- script: |
cd $(Build.SourcesDirectory)/SysinternalsEBPF/build
make install
ldconfig
displayName: "Install SysinternalsEBPF"
- template: templates/build.yaml
parameters:
srcFolder: 'SysmonForLinux'