Skip to content

Commit 1d25954

Browse files
jimf5p-pautov
andcommitted
Download the latest otelcol for CI tests.
Co-authored-by: Pavel Pautov <[email protected]>
1 parent be30eef commit 1d25954

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ubuntu.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ jobs:
3636
make -j $(nproc)
3737
- name: Download otelcol
3838
run: |
39-
curl -sLo - https://github.com/\
40-
open-telemetry/opentelemetry-collector-releases/releases/download/\
41-
v0.115.1/otelcol_0.115.1_linux_amd64.tar.gz | tar -xzv
39+
LATEST=open-telemetry/opentelemetry-collector-releases/releases/latest
40+
TAG=$(curl -s https://api.github.com/repos/${LATEST} |
41+
jq -r .tag_name)
42+
curl -sLo - https://github.com/${LATEST}/download/\
43+
otelcol_${TAG:1}_linux_amd64.tar.gz | tar -xzv
4244
- name: Install test dependencies
4345
run: pip install -r tests/requirements.txt
4446
- name: Run tests

0 commit comments

Comments
 (0)