Compare commits
No commits in common. "5e2e4593d539f50be4c8e6d7497b2a494353a3ef" and "79579aa0700fbb4c4ebafdb525a227ed68a1629c" have entirely different histories.
5e2e4593d5
...
79579aa070
3 changed files with 34 additions and 2 deletions
31
.forgejo/workflows/build.yml
Normal file
31
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: build bin
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Make sure build does not fail
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
name: checkout
|
||||||
|
- name: install alsa devel
|
||||||
|
run: apt update && apt install libasound2-dev -y
|
||||||
|
- uses: https://code.forgejo.org/actions/setup-go@v5
|
||||||
|
name: install go
|
||||||
|
with:
|
||||||
|
go-version-file: './go.mod'
|
||||||
|
- run: go version
|
||||||
|
name: Go version
|
||||||
|
- run: make dep
|
||||||
|
name: install dependencies
|
||||||
|
- run: make build
|
||||||
|
name: build app
|
||||||
|
|
|
@ -24,4 +24,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
check_filenames: true
|
check_filenames: true
|
||||||
check_hidden: true
|
check_hidden: true
|
||||||
skip: ./vendor,./.git
|
skip: ./.git
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"reviewers": [
|
"reviewers": [
|
||||||
"sagi"
|
"sagi"
|
||||||
]
|
],
|
||||||
|
"branchPrefix": "inspector_gadget/"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue