Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ def filename_for_entry(prog_name, entry):
def matrix(prog_name):
for goos in _goos():
for goarch in _goarch(goos):
if (goos, goarch) == ('freebsd', 'riscv64'):
# platform not supported
# gopsutil/v4@v4.25.8/cpu/cpu_freebsd.go:85:13: undefined: cpuTimes
continue
for goarm in _goarm(goarch):
for build_tarball in _build_tarball(goos):
yield {
Expand Down
Loading