-
Notifications
You must be signed in to change notification settings - Fork 25
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 #250 from xiaods/dev
add arm64 builder for workfow
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
on: | ||
release: | ||
types: | ||
- published | ||
name: Build Release | ||
jobs: | ||
build: | ||
name: Build & Release | ||
runs-on: [self-hosted, linux, ARM64] | ||
strategy: | ||
matrix: | ||
include: | ||
- goarch: arm64 | ||
goos: linux | ||
env: | ||
RELEASE_TAG: ${{secrets.RELEASE_TAG}} | ||
GOOS: ${{ matrix.goos }} | ||
GOARCH: ${{ matrix.goarch }} | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16 | ||
- name: generate resources | ||
run: mkdir -p {build/data,build/static} | ||
- name: package bin | ||
run: SKIP_VALIDATE=true make | ||
- name: package airgap image | ||
run: make package-airgap | ||
- name: sha256sum artifacts | ||
run: sha256sum dist/artifacts/k8e-${{ matrix.goarch }} dist/artifacts/k8e-airgap-images-${{ matrix.goarch }}.tar.gz >> k8e-hashes-${{ matrix.goarch }}.txt | ||
- name: Uploading assets... | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
dist/artifacts/k8e-${{ matrix.goarch }} | ||
dist/artifacts/k8e-airgap-images-${{ matrix.goarch }}.tar.gz | ||
dist/artifacts/k8e-images-${{ matrix.goarch }}.txt | ||
k8e-hashes-${{ matrix.goarch }}.txt |