fix(agent): disable seahorse context manager on freebsd/arm (#2417)
* fix(agent): disable seahorse context manager on freebsd/arm Exclude freebsd/arm from the seahorse-enabled build and route it to the unsupported stub implementation. This avoids freebsd/arm build failures caused by modernc sqlite/libc while keeping picoclaw buildable on that target. * build: bump Go version from 1.25.8 to 1.25.9 * ci: install and run govulncheck directly in PR workflow
This commit is contained in:
parent
6ce0306c66
commit
330de0c382
4 changed files with 7 additions and 6 deletions
7
.github/workflows/pr.yml
vendored
7
.github/workflows/pr.yml
vendored
|
|
@ -41,10 +41,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
|
|
||||||
|
- name: Install govulncheck
|
||||||
|
run: go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
|
||||||
|
|
||||||
- name: Run Govulncheck
|
- name: Run Govulncheck
|
||||||
uses: golang/govulncheck-action@v1
|
run: govulncheck -C . -format text ./...
|
||||||
with:
|
|
||||||
go-package: ./...
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Tests
|
name: Tests
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/sipeed/picoclaw
|
module github.com/sipeed/picoclaw
|
||||||
|
|
||||||
go 1.25.8
|
go 1.25.9
|
||||||
|
|
||||||
require (
|
require (
|
||||||
fyne.io/systray v1.12.0
|
fyne.io/systray v1.12.0
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !mipsle && !netbsd
|
//go:build !mipsle && !netbsd && !(freebsd && arm)
|
||||||
|
|
||||||
package agent
|
package agent
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build mipsle || netbsd
|
//go:build mipsle || netbsd || (freebsd && arm)
|
||||||
|
|
||||||
package agent
|
package agent
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue