Skip to content

Commit

Permalink
Merge pull request warrensbox#92 from spring-media/master
Browse files Browse the repository at this point in the history
Support arm64
  • Loading branch information
warrensbox authored Oct 4, 2021
2 parents dbe9c44 + 4b5a782 commit 72e7ba0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.17

working_directory: /go/src/github.com/warrensbox/tgswitch

Expand All @@ -22,7 +22,7 @@ jobs:
release:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.17

working_directory: /go/src/github.com/warrensbox/tgswitch

Expand Down
1 change: 1 addition & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ builds:
- linux
goarch:
- amd64
- arm64
checksum:
name_template: '{{ .ProjectName }}_{{.Env.RELEASE_VERSION}}_checksums.txt'
changelog:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: go
install: true

go:
- "1.10.1"
- "1.17.1"

script:
- make test
Expand Down
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ is_supported_platform() {
case "$platform" in
windows/amd64) found=0 ;;
darwin/amd64) found=0 ;;
darwin/amd64) found=0 ;;
linux/amd64) found=0 ;;
linux/arm64) found=0 ;;
esac
return $found
}
Expand Down

0 comments on commit 72e7ba0

Please sign in to comment.