Skip to content

Commit

Permalink
ARM release, removed Darwin 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-szabo committed May 6, 2021
1 parent 2ce268c commit 9faa574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ commands:
- run:
name: Release
command: |
CGO_ENABLED=0 GOOS=darwin GOARCH=386 go build -ldflags "-extldflags static" -o build/stoml_darwin_386 .
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags "-extldflags static" -o build/stoml_darwin_amd64 .
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -ldflags "-extldflags static" -o build/stoml_linux_386 .
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-extldflags static" -o build/stoml_linux_amd64 .
CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=7 go build -ldflags "-extldflags static" -o build/stoml_linux_armv7 .
CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -ldflags "-extldflags static" -o build/stoml_windows_386 .
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags "-extldflags static" -o build/stoml_windows_amd64 .
/bin/bash .circleci/release.bash
Expand Down
2 changes: 1 addition & 1 deletion .circleci/release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ echo "Release ID: ${id}"

# Upload binaries

for binary in stoml_darwin_386 stoml_darwin_amd64 stoml_linux_386 stoml_linux_amd64 stoml_windows_386 stoml_windows_amd64
for binary in stoml_darwin_amd64 stoml_linux_386 stoml_linux_amd64 stoml_windows_386 stoml_windows_amd64 stoml_linux_armv7
do
echo -ne "Processing ${binary}... "
if [[ ! -f "build/${binary}" ]]; then
Expand Down

0 comments on commit 9faa574

Please sign in to comment.