-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update go ver in alpine distr in the actions/bin flow
- Loading branch information
Nikolay Tkachenko
committed
Sep 13, 2024
1 parent
30da48f
commit 6593f3e
Showing
1 changed file
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,10 +165,10 @@ jobs: | |
matrix: | ||
include: | ||
- arch: amd64 | ||
distro: alpine3.20 | ||
distro: alpine | ||
artifact: amd64-musl | ||
- arch: "386" | ||
distro: alpine3.20 | ||
distro: alpine | ||
artifact: 386-musl | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -274,10 +274,12 @@ jobs: | |
go_distribution: https://go.dev/dl/go1.22.7.linux-arm64.tar.gz | ||
artifact: arm64-libc | ||
- arch: armv6 | ||
distro: alpine3.20 | ||
distro: alpine_latest | ||
go_distribution: https://go.dev/dl/go1.22.7.linux-armv6l.tar.gz | ||
artifact: armv6-musl | ||
- arch: aarch64 | ||
distro: alpine3.20 | ||
distro: alpine_latest | ||
go_distribution: https://go.dev/dl/go1.22.7.linux-arm64.tar.gz | ||
artifact: arm64-musl | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -327,8 +329,12 @@ jobs: | |
git \ | ||
gzip \ | ||
make \ | ||
musl-dev \ | ||
go | ||
musl-dev && \ | ||
curl -sLo go.tar.gz ${{ matrix.go_distribution }} && \ | ||
mkdir -p /usr/local/go && \ | ||
tar -x -C /usr/local -f go.tar.gz && \ | ||
rm go.tar.gz && \ | ||
export PATH=${PATH}:/usr/local/go/bin | ||
;; | ||
esac | ||
|