Skip to content

Commit cf05b46

Browse files
committed
Try default of 10 to avoid limit on simultaneously alive goroutines
1 parent 34a1049 commit cf05b46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/coder-test-stability.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
iterationCount:
1919
description: 'Iteration Count'
2020
required: false
21-
default: '15'
21+
default: '10'
2222

2323
# Cancel in-progress runs for pull requests when developers push
2424
# additional changes, and serialize builds in branches.
@@ -69,7 +69,7 @@ jobs:
6969
- name: Test with Mock Database
7070
shell: bash
7171
env:
72-
GOCOUNT: ${{ github.event.inputs.iterationCount || 15 }}
72+
GOCOUNT: ${{ github.event.inputs.iterationCount || 10 }}
7373
GOMAXPROCS: ${{ runner.os == 'Windows' && 1 || 2 }}
7474
run: gotestsum --junitfile="gotests.xml" --packages="./..." --
7575
-covermode=atomic -coverprofile="gotests.coverage"
@@ -86,7 +86,7 @@ jobs:
8686
- name: Test with PostgreSQL Database
8787
if: runner.os == 'Linux'
8888
env:
89-
GOCOUNT: ${{ github.event.inputs.iterationCount || 15 }}
89+
GOCOUNT: ${{ github.event.inputs.iterationCount || 10 }}
9090
run: DB=true gotestsum --junitfile="gotests.xml" --packages="./..." --
9191
-covermode=atomic -coverprofile="gotests.coverage" -timeout=15m
9292
-count=$GOCOUNT -race -parallel=2 -failfast

0 commit comments

Comments
 (0)