We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9642c09 commit 17d0659Copy full SHA for 17d0659
.github/workflows/build.yaml
@@ -34,7 +34,6 @@ jobs:
34
run: mage Build
35
36
xbuild:
37
- name: xbuild-${{matrix.GOOS}}-${{matrix.GOARCH}}
38
strategy:
39
matrix:
40
GOOS: [linux, windows, darwin]
@@ -96,7 +95,7 @@ jobs:
96
95
run: mage vet
97
98
build-docker:
99
- needs: [xbuild-linux-amd64]
+ needs: [xbuild]
100
runs-on: ubuntu-latest
101
steps:
102
- name: Checkout repository
@@ -122,12 +121,12 @@ jobs:
122
121
run: mage BuildImages
123
124
smoke-test:
125
126
# TODO: Configure our self-hosted windows runner
127
#strategy:
128
# matrix:
129
# os: [ubuntu-latest]
130
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest # ${{matrix.os}}
131
132
133
uses: actions/checkout@v3
0 commit comments