Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Feb 20, 2024
1 parent a2d9308 commit 49c9f28
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
elif [ "${{ matrix.goarch }}" = "amd64" ]; then
echo "CC=x86_64-linux-gnu-gcc" >> $GITHUB_ENV
fi
echo "GOGCCFLAGS=" >> $GITHUB_ENV
- uses: wangyoucao577/go-release-action@v1.40
env:
MIXPANEL_PROJECT_TOKEN: ${{ secrets.MIXPANEL_PROJECT_TOKEN }}
Expand All @@ -42,8 +43,9 @@ jobs:
COMMIT: ${{ github.sha }}
CGO_ENABLED: 1
CGO_FLAGS: "-O2 -D__BLST_PORTABLE__"
CGO_CFLAGS: "-O2 -D__BLST_PORTABLE__"
with:
pre_command: apt-get update && apt-get -y install gcc-aarch64-linux-gnu && make generate
pre_command: apt-get update && apt-get -y install gcc-aarch64-linux-gnu && make generate && export CGO_ENABLED=1 && export CGO_FLAGS="-O2 -D__BLST_PORTABLE__" && export CGO_CFLAGS="-O2 -D__BLST_PORTABLE__" && export GOGCCFLAGS=""
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
Expand Down

0 comments on commit 49c9f28

Please sign in to comment.