v0.4.6 #28
Workflow file for this run
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
name: Upload release binaries | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Build Binaries | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
goos: [linux] | |
goarch: [amd64, arm64] | |
include: | |
- goarch: amd64 | |
cc: gcc | |
- goarch: arm64 | |
cc: aarch64-linux-gnu-gcc | |
env: | |
filename: ngtop-${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.ext }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: install cross compiler | |
run: sudo apt-get -y install gcc-aarch64-linux-gnu | |
- name: Build Binary | |
# see https://www.arp242.net/static-go.html | |
# an alternative is to switch to https://pkg.go.dev/modernc.org/sqlite (a pure go implementation) and remove cgo altogether | |
run: CGO_ENABLED=1 CC=${{ matrix.cc }} GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-s -w -extldflags=-static" -tags sqlite_omit_load_extension,netgo,osusergo -o ${{ env.filename }} . | |
# if the same arch as the runner, try the binary to verify it runs properly | |
- name: test binary | |
if: matrix.goarch == 'amd64' | |
run: chmod +x ${{ env.filename }} && ./${{ env.filename }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ${{ env.filename }} |