Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ jobs:
goarch: amd64
- goos: freebsd
goarch: arm64
- goos: linux
goarch: loong64
- goos: windows
goarch: arm64

Expand Down Expand Up @@ -169,6 +171,9 @@ jobs:
windows/arm64)
echo "CGO_ENABLED=0" >> $GITHUB_ENV
;;
linux/loong64)
echo "CGO_ENABLED=0" >> $GITHUB_ENV
;;
esac

if [ -n "${packages}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ COMMANDS += containerd-shim-runc-v2

# check GOOS for cross compile builds
ifeq ($(GOOS),linux)
ifneq ($(GOARCH),$(filter $(GOARCH),mips mipsle mips64 mips64le ppc64))
ifneq ($(GOARCH),$(filter $(GOARCH),mips mipsle mips64 mips64le ppc64 loong64))
ifeq ($(STATIC),)
GO_GCFLAGS += -buildmode=pie
endif
Expand Down
1 change: 1 addition & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ verification. Users are free to build from source for their own use.
| linux/s390x | 2 | ✅ | ✅ | ❌ | ✅ |
| linux/arm/v7 | 3 | ❌ | ❌ | ❌ | ✅ |
| linux/arm/v5 | 3 | ❌ | ❌ | ❌ | ✅ |
| linux/loong64 | 3 | ❌ | ❌ | ❌ | ✅ |
| darwin/arm64 | 3 | ❌ | ❌ | ❌ | ✅ |
| freebsd/amd64 | 3 | ❌ | ❌ | ❌ | ✅ |
| freebsd/arm64 | 3 | ❌ | ❌ | ❌ | ✅ |
Expand Down
Loading