-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from fluxcd/gha-arm64
Build Kubernetes on ARM64 GitHub runners
- Loading branch information
Showing
1 changed file
with
10 additions
and
3 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 |
---|---|---|
|
@@ -32,6 +32,10 @@ jobs: | |
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22.x | ||
- name: Setup Kind | ||
uses: helm/[email protected] | ||
with: | ||
version: v0.23.0 | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
|
@@ -53,9 +57,8 @@ jobs: | |
docker tag kindest/node:latest ghcr.io/fluxcd/kindest/node:${{ steps.prep.outputs.VERSION }}-amd64 | ||
docker push ghcr.io/fluxcd/kindest/node:${{ steps.prep.outputs.VERSION }}-amd64 | ||
k8s-node-arm64: | ||
# Hosted on Equinix | ||
# Docs: https://github.com/fluxcd/flux2/tree/main/.github/runners | ||
runs-on: [self-hosted, Linux, ARM64, equinix] | ||
runs-on: | ||
group: "ARM64" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -72,6 +75,10 @@ jobs: | |
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22.x | ||
- name: Setup Kind | ||
uses: helm/[email protected] | ||
with: | ||
version: v0.23.0 | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
|