38 lines
996 B
YAML
38 lines
996 B
YAML
# This workflow will build a golang project for FreeBSD
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
|
|
|
name: build for freebsd
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: vmactions/freebsd-vm@v1
|
|
with:
|
|
usesh: true
|
|
release: '14.0'
|
|
prepare: |
|
|
pkg install -y go
|
|
pkg install -y xorg
|
|
pkg install -y git
|
|
pkg install -y node
|
|
pkg install -y npm
|
|
pkg install -y pkgconf
|
|
run: |
|
|
go version
|
|
go build -buildvcs=false .
|
|
ls
|
|
git clone https://github.com/actions/upload-artifact.git
|
|
cd upload-artifact
|
|
npm install
|
|
npm run build
|
|
ls -l dist
|
|
cd ..
|
|
node ./upload-artifact/dist/index.js -n pi-binary-freebsd -p pi-im
|