-
Notifications
You must be signed in to change notification settings - Fork 2
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 #48 from OpenCHAMI/alexlovelltroy/build-improvements
Alexlovelltroy/build improvements
- Loading branch information
Showing
12 changed files
with
416 additions
and
222 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,57 @@ | ||
name: Run Unit Tests and Build PR with goreleaser | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'main' | ||
types: [opened, synchronize, reopened, edited] | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
prbuild: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install cross-compilation tools | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu | ||
- name: Set up latest stable Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-tags: 1 | ||
fetch-depth: 1 | ||
|
||
- name: Install dependencies | ||
run: go get ./boot-script-service ./bss-init | ||
working-directory: ./cmd | ||
|
||
- name: Test with the Go CLI | ||
run: go test ./boot-script-service ./bss-init | ||
working-directory: ./cmd | ||
|
||
# Set environment variables required by GoReleaser | ||
- name: Set build environment variables | ||
run: | | ||
echo "GIT_STATE=$(if git diff-index --quiet HEAD --; then echo 'clean'; else echo 'dirty'; fi)" >> $GITHUB_ENV | ||
echo "BUILD_HOST=$(hostname)" >> $GITHUB_ENV | ||
echo "GO_VERSION=$(go version | awk '{print $3}')" >> $GITHUB_ENV | ||
echo "BUILD_USER=$(whoami)" >> $GITHUB_ENV | ||
- name: Build with goreleaser | ||
uses: goreleaser/goreleaser-action@v6 | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
version: '~> v2' | ||
args: build --clean --snapshot | ||
id: goreleaser |
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
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
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
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
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
Oops, something went wrong.