We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d0a6c5 + bc8181c commit 458d359Copy full SHA for 458d359
.github/workflows/ci.yaml
@@ -15,6 +15,15 @@ jobs:
15
build:
16
name: Build
17
runs-on: ubuntu-24.04
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ distro:
22
+ - otelcol
23
+ - otelcol-contrib
24
+ - otelcol-k8s
25
+ - otelcol-otlp
26
+ - otelcol-ebpf-profiler
27
steps:
28
- name: Checkout
29
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -32,3 +41,12 @@ jobs:
32
41
33
42
- name: Verify
34
43
run: make ci
44
+ env:
45
+ DISTRIBUTIONS: ${{ matrix.distro }}
46
+
47
+ build-result:
48
+ name: "Build Result"
49
+ runs-on: ubuntu-latest
50
+ needs: build
51
+ steps:
52
+ - run: echo "Build for all distros succeeded"
0 commit comments