-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpipeline.yml
More file actions
32 lines (31 loc) · 828 Bytes
/
pipeline.yml
File metadata and controls
32 lines (31 loc) · 828 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
version: "1.1"
stages:
- stage:
- git-checkout:
alias: raw-ebpf-agent
params:
depth: 1
- stage:
- extract-repo-version:
params:
git_dir: ${{ dirs.raw-ebpf-agent }}
- stage:
- custom-script:
alias: build
commands:
- cd ${{ dirs.raw-ebpf-agent }}
- make build-ebpf-agent
- make login
- make buildkit-image
resources:
cpu: 0.5
mem: 2048
- stage:
- release:
alias: release-ebpf-agent
params:
check_diceyml: false
dice_yml: ${{ dirs.raw-ebpf-agent }}/erda.yml
tag_version: ${{ outputs.extract-repo-version.version }}
image:
ebpf-agent: ${{ outputs.build.image }}