From 429f70d2df0ff7ac80efff3a6e65149d28ae7175 Mon Sep 17 00:00:00 2001 From: kylecarbs Date: Fri, 17 Jun 2022 13:56:08 +0000 Subject: [PATCH] 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. --- .github/workflows/coder.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index bd6d6f5753939..892043414f850 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -203,13 +203,10 @@ jobs: - name: Test with Mock Database shell: bash - env: - GOCOUNT: ${{ runner.os == 'Windows' && 1 || 2 }} - GOMAXPROCS: ${{ runner.os == 'Windows' && 1 || 2 }} run: gotestsum --junitfile="gotests.xml" --packages="./..." -- -covermode=atomic -coverprofile="gotests.coverage" -coverpkg=./...,github.com/coder/coder/codersdk - -timeout=5m -count=$GOCOUNT -short -failfast + -timeout=5m -short -failfast - name: Upload DataDog Trace if: always() && github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork