From 2e230766882184ed4c7eeb43840c41b2097d3f4d Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Thu, 23 May 2024 15:29:33 -0700 Subject: [PATCH] move windows runners to in-house (#19800) GitHub CI runners for windows have gotten very slow, moving them to our own hosted runners --- .github/workflows/go-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index a14d42f32..c5fcf6088 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: go-version: [1.22.x] - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, Windows] steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 @@ -29,7 +29,7 @@ jobs: go-version: ${{ matrix.go-version }} check-latest: true - name: Build on ${{ matrix.os }} - if: matrix.os == 'windows-latest' + if: matrix.os == 'Windows' env: CGO_ENABLED: 0 GO111MODULE: on