Skip to content

Commit 17d0659

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

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,7 +34,6 @@ jobs:
3434
run: mage Build
3535

3636
xbuild:
37-
name: xbuild-${{matrix.GOOS}}-${{matrix.GOARCH}}
3837
strategy:
3938
matrix:
4039
GOOS: [linux, windows, darwin]
@@ -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,12 +121,12 @@ 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:
129128
# os: [ubuntu-latest]
130-
runs-on: ${{ matrix.os }}
129+
runs-on: ubuntu-latest # ${{matrix.os}}
131130
steps:
132131
- name: Checkout repository
133132
uses: actions/checkout@v3

0 commit comments

Comments
 (0)