From b52b7537fcf516e4ebaf91cb2fe04be484d6b30a Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Wed, 12 Feb 2025 23:17:17 +0800 Subject: [PATCH] action: force s390x build using golang1.23 --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff489d90..5ae46731 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,11 @@ jobs: - { goos: linux, goarch: loong64, output: loong64-abi1, abi: '1' } - { goos: linux, goarch: loong64, output: loong64-abi2, abi: '2' } - { goos: linux, goarch: riscv64, output: riscv64 } - - { goos: linux, goarch: s390x, output: s390x } + + # Broken in Golang1.24 with: + # "Error: github.com/metacubex/chacha@v0.1.0/chacha/chacha_ref.go:32:18: illegal combination MOVWBR ADDR NONE NONE NONE NONE REG" + # So just stay in golang1.23 + - { goos: linux, goarch: s390x, output: s390x, goversion: '1.23' } - { goos: windows, goarch: '386', output: '386' } - { goos: windows, goarch: amd64, goamd64: v1, output: amd64-compatible }