feat: Make it easier to configure local includes #331
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: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Install Build Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libbtrfs-dev libdevmapper-dev pkg-config build-essential | |
- name: Build vib | |
run: | | |
go get ./... | |
make build | |
- name: Build plugins | |
run: | | |
go get ./... | |
make build-plugins | |
tar cvf plugins.tar.xz build/plugins | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Vib | |
path: | | |
build/vib | |
plugins.tar.xz |