-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (45 loc) · 1.4 KB
/
build.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
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-otelcol-orb-agent-binary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Install dependencies and tools
run: |
go mod tidy
go install github.com/open-telemetry/opentelemetry-collector-builder@latest
make install-tools
- name: Build Otelcol Orb Agent
run: make otelcol-orb-agent
- name: Debug built version
run: ./cmd/otelcol-orb-agent/dist/otelcol-orb --version
- name: Build Otelcol Orb Agent Docker
run: make docker-otelcol-orb-agent
build-otelcol-orb-maestro:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Install dependencies and tools
run: |
go mod tidy
go install github.com/open-telemetry/opentelemetry-collector-builder@latest
make install-tools
- name: Build Otelcol Orb Maestro
run: make otelcol-orb-maestro
- name: Debug built version
run: ./cmd/otelcol-orb-maestro/dist/otelcol-orb --version
- name: Build Otelcol Orb Maestro Docker
run: make docker-otelcol-orb-maestro