Skip to content

Commit 429f70d

Browse files
committed
test: Remove max processes on Windows runner
This was added because the runner was running out of memory. It has potential to reduce our CI time significantly, so we'll see if it still happens.
1 parent d0aca86 commit 429f70d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/coder.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -203,13 +203,10 @@ jobs:
203203

204204
- name: Test with Mock Database
205205
shell: bash
206-
env:
207-
GOCOUNT: ${{ runner.os == 'Windows' && 1 || 2 }}
208-
GOMAXPROCS: ${{ runner.os == 'Windows' && 1 || 2 }}
209206
run: gotestsum --junitfile="gotests.xml" --packages="./..." --
210207
-covermode=atomic -coverprofile="gotests.coverage"
211208
-coverpkg=./...,github.com/coder/coder/codersdk
212-
-timeout=5m -count=$GOCOUNT -short -failfast
209+
-timeout=5m -short -failfast
213210

214211
- name: Upload DataDog Trace
215212
if: always() && github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork

0 commit comments

Comments
 (0)