File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,15 @@ jobs:
1010 runs-on : windows-latest
1111 strategy :
1212 matrix :
13- goarch : [amd64, arm64 ]
13+ goarch : [amd64]
1414 steps :
1515 - name : Checkout
1616 uses : actions/checkout@v3
1717 - name : Build
1818 shell : pwsh
1919 env :
2020 GOARCH : ${{ matrix.goarch }}
21+ CGO_ENABLED : 1
2122 run : |
2223 go build -o queryx.exe cmd/queryx/main.go
2324 tar zcvf queryx_${{ github.ref_name }}_windows_${{ matrix.goarch }}.tar.gz ./*.md LICENSE queryx.exe
@@ -34,13 +35,14 @@ jobs:
3435 runs-on : ubuntu-latest
3536 strategy :
3637 matrix :
37- goarch : [amd64, arm64 ]
38+ goarch : [amd64]
3839 steps :
3940 - name : Checkout
4041 uses : actions/checkout@v3
4142 - name : Build
4243 env :
4344 GOARCH : ${{ matrix.goarch }}
45+ CGO_ENABLED : 1
4446 run : |
4547 go build -o queryx cmd/queryx/main.go
4648 tar zcvf queryx_${{ github.ref_name }}_linux_${{ matrix.goarch }}.tar.gz ./*.md LICENSE queryx
6466 - name : Build
6567 env :
6668 GOARCH : ${{ matrix.goarch }}
69+ CGO_ENABLED : 1
6770 run : |
6871 go build -o queryx cmd/queryx/main.go
6972 tar zcvf queryx_${{ github.ref_name }}_darwin_${{ matrix.goarch }}.tar.gz ./*.md LICENSE queryx
You can’t perform that action at this time.
0 commit comments