Skip to content

Commit

Permalink
Get riscv64 build working
Browse files Browse the repository at this point in the history
  • Loading branch information
benhoyt committed Mar 26, 2023
1 parent 26c0c43 commit 3384c18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
goos: [linux]
goarch: [amd64, arm64, ppc64le, s390x]
goarch: [amd64, arm64, ppc64le, riscv64, s390x]

runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions internal/osutil/sys/sysnum_32_linux.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- Mode: Go; indent-tabs-mode: t -*-
//go:build arm64 || amd64 || ppc64le || s390x || ppc
// +build arm64 amd64 ppc64le s390x ppc
//go:build arm64 || amd64 || ppc64le || s390x || ppc || riscv64
// +build arm64 amd64 ppc64le s390x ppc riscv64

/*
* Copyright (c) 2017 Canonical Ltd
Expand Down

0 comments on commit 3384c18

Please sign in to comment.