chore: add build workflow

This commit is contained in:
Emmanuel BENOîT 2024-07-19 08:51:03 +02:00
parent 8feb34bbe6
commit 1de28c9a10
Signed by: Emmanuel BENOîT
SSH key fingerprint: SHA256:l7PFUUF5TCDsvYeQC9OnTNz08dFY7Fvf4Hv3neIqYpg
2 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,29 @@
name: Build project
on:
push:
pull-request:
jobs:
build:
runs-on: [debian-12]
strategy:
matrix:
go-version: [ '1.21', '1.22' ]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build plugins
run: |
go mod download
./build.sh

View file

@ -7,8 +7,9 @@ for arch in 386 amd64; do
for d in $(find cmd -mindepth 1 -maxdepth 1 -type d); do for d in $(find cmd -mindepth 1 -maxdepth 1 -type d); do
pushd $d >/dev/null pushd $d >/dev/null
xn="$(basename "$d")" xn="$(basename "$d")"
GOARCH=$arch go get .
GOARCH=$arch go build GOARCH=$arch go build
/bin/mv "$xn" ../../bin/$arch /bin/mv "$xn" ../../bin/$arch
popd >/dev/null popd >/dev/null
done done
done done