Skip to content

Commit 8fc4cd6

Browse files
authored
test: Increase runner size and reduce parallelity (#4061)
* test: Increase runner size for test-examples * Remove image tag change (by accident) * retry * Avoid running more than two tests * Fix command
1 parent 7537561 commit 8fc4cd6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test-examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313

1414
jobs:
1515
test:
16-
runs-on: ubuntu-latest
16+
runs-on: github-hosted-ubuntu-x64-large
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ endif
9292
.PHONY: examples/test
9393
examples/test: RUN := .*
9494
examples/test: $(BIN)/gotestsum
95-
$(BIN)/gotestsum --format testname -- --count 1 --timeout 1h --tags examples -run "$(RUN)" ./examples
95+
$(BIN)/gotestsum --format testname --rerun-fails=2 --packages ./examples -- --count 1 --parallel 2 --timeout 1h --tags examples -run "$(RUN)"
9696

9797
.PHONY: build
9898
build: frontend/build go/bin ## Do a production build (requiring the frontend build to be present)

examples/language-sdk-instrumentation/golang-push/rideshare-alloy/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
context: .
2828

2929
alloy:
30-
image: simonswine/alloy:content-type-only
30+
image: grafana/alloy:latest
3131
command:
3232
- run
3333
- /etc/alloy/config.alloy
@@ -39,7 +39,7 @@ services:
3939
- "12345:12345"
4040

4141
pyroscope:
42-
image: grafana/pyroscope:weekly-f110-32faf96b1
42+
image: grafana/pyroscope:latest
4343
ports:
4444
- 4040:4040
4545

0 commit comments

Comments
 (0)