From adfb618dc77f0176ec7f377e43735812ba364501 Mon Sep 17 00:00:00 2001 From: Ketan Gangatirkar <33678+ketang@users.noreply.github.com> Date: Mon, 4 Jul 2022 10:43:55 -0500 Subject: [PATCH 1/2] restore windows builds to CI --- .github/workflows/coder.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index e67777ab46aaa..b6b84dfef0167 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -371,6 +371,11 @@ jobs: --package-linux \ linux:amd64 + # build windows amd64 packages + ./scripts/build_go_matrix.sh \ + --output ./dist/ \ + windows:amd64 + - name: Install Release run: | gcloud config set project coder-dogfood From 27d62aac97de78768dfa5516143a25b160edd895 Mon Sep 17 00:00:00 2001 From: Ketan Gangatirkar <33678+ketang@users.noreply.github.com> Date: Mon, 4 Jul 2022 11:04:46 -0500 Subject: [PATCH 2/2] combine build_go_matrix.sh invocations --- .github/workflows/coder.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index b6b84dfef0167..20794fd8cf7cd 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -369,11 +369,7 @@ jobs: ./scripts/build_go_matrix.sh \ --output ./dist/ \ --package-linux \ - linux:amd64 - - # build windows amd64 packages - ./scripts/build_go_matrix.sh \ - --output ./dist/ \ + linux:amd64 \ windows:amd64 - name: Install Release