diff options
| author | Jeff Carr <[email protected]> | 2025-10-14 10:58:34 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-14 10:58:34 -0500 |
| commit | d5a80f3fa0d3b3bb2f9144f21e1611a256798b36 (patch) | |
| tree | 3c5fc56d02d0d0de0a93db614d50ab67854fe616 | |
| parent | 8326f9b6ed478a9c86ade42953f4ff0b52b6debc (diff) | |
skip some things for riscv
| -rw-r--r-- | doBuild.debian.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doBuild.debian.go b/doBuild.debian.go index a396bda..09eeb38 100644 --- a/doBuild.debian.go +++ b/doBuild.debian.go @@ -7,6 +7,7 @@ import ( "errors" "os" "path/filepath" + "strings" "go.wit.com/lib/debian" "go.wit.com/lib/fhelp" @@ -34,6 +35,18 @@ func findBuildDeb() *gitpb.Repos { // can't build packages that aren't GO binaries continue } + if argv.Build.Debian.Arch != "" { + if check.IsGoPlugin() { + continue + } + // mask some packages for arch builds + if strings.Contains(check.Namespace, "fyne") { + continue + } + if strings.Contains(check.Namespace, "toolkit") { + continue + } + } if argv.All { // don't check if you need to build, just build everything |
