Skip to content

Commit e223c06

Browse files
committed
fix needs to reference the entire xbuild
Signed-off-by: Carolyn Van Slyck <me@carolynvanslyck.com>
1 parent 9642c09 commit e223c06

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,9 @@ jobs:
3434
run: mage Build
3535

3636
xbuild:
37-
name: xbuild-${{matrix.GOOS}}-${{matrix.GOARCH}}
3837
strategy:
3938
matrix:
40-
GOOS: [linux, windows, darwin]
39+
GOOS: [windows, darwin]
4140
GOARCH: [amd64, arm64]
4241
runs-on: ubuntu-latest
4342
steps:
@@ -96,7 +95,7 @@ jobs:
9695
run: mage vet
9796

9897
build-docker:
99-
needs: [xbuild-linux-amd64]
98+
needs: [xbuild]
10099
runs-on: ubuntu-latest
101100
steps:
102101
- name: Checkout repository
@@ -122,7 +121,7 @@ jobs:
122121
run: mage BuildImages
123122

124123
smoke-test:
125-
needs: [xbuild-linux-amd64]
124+
needs: [xbuild]
126125
# TODO: Configure our self-hosted windows runner
127126
#strategy:
128127
# matrix:

0 commit comments

Comments
 (0)