Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed goreleaser to use correct GCC version for Linux arm64 #282

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ builds:
binary: twitch
env:
- CGO_ENABLED=1
- CC=aarch64-linux-gnu-gcc-6
- CXX=aarch64-linux-gnu-g++-6
- CC=aarch64-linux-gnu-gcc-9
- CXX=aarch64-linux-gnu-g++-9
goos:
- linux
goarch:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test-release:
-v /var/run/docker.sock:/var/run/docker.sock \
-w /go/src/github.com/twitchdev/twitch-cli \
-e GITHUB_TOKEN=${GITHUB_TOKEN} \
twitch-cli:latest --clean --skip-publish --snapshot
twitch-cli:latest --clean --skip=publish --snapshot

build:
go build --ldflags "-s -w -X main.buildVersion=source"
Expand Down
Loading