-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nikolay Tkachenko
committed
Nov 12, 2024
1 parent
89a0955
commit fc15085
Showing
1 changed file
with
8 additions
and
13 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 |
---|---|---|
|
@@ -266,26 +266,22 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- arch: none | ||
distro: none | ||
- arch: armv6 | ||
distro: bullseye | ||
go_distribution: https://go.dev/dl/go1.22.9.linux-armv6l.tar.gz | ||
artifact: armv6-libc | ||
base_image: '--platform=linux/armv6 bullseye:latest' | ||
- arch: none | ||
distro: none | ||
- arch: aarch64 | ||
distro: bullseye | ||
go_distribution: https://go.dev/dl/go1.22.9.linux-arm64.tar.gz | ||
artifact: arm64-libc | ||
base_image: '--platform=linux/aarch64 bullseye:latest' | ||
- arch: none | ||
distro: none | ||
- arch: armv6 | ||
distro: alpine_latest | ||
go_distribution: https://go.dev/dl/go1.22.9.linux-armv6l.tar.gz | ||
artifact: armv6-musl | ||
base_image: '--platform=linux/armv6 alpine:latest' | ||
- arch: none | ||
distro: none | ||
- arch: aarch64 | ||
distro: alpine_latest | ||
go_distribution: https://go.dev/dl/go1.22.9.linux-arm64.tar.gz | ||
artifact: arm64-musl | ||
base_image: '--platform=linux/aarch64 alpine:latest' | ||
steps: | ||
- uses: actions/[email protected] | ||
- | ||
|
@@ -298,7 +294,6 @@ jobs: | |
with: | ||
arch: ${{ matrix.arch }} | ||
distro: ${{ matrix.distro }} | ||
base_image: ${{ matrix.base_image }} | ||
githubToken: ${{ github.token }} | ||
setup: |- | ||
mkdir -p "${PWD}/artifacts" | ||
|