Skip to content

Commit 06ea7c8

Browse files
authored
test: Remove max processes on Windows runner (#2457)
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 e2785ad commit 06ea7c8

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
@@ -202,13 +202,10 @@ jobs:
202202

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

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

0 commit comments

Comments
 (0)