From 363afb03a087e2fde177f268d037d24c5da36574 Mon Sep 17 00:00:00 2001 From: eabdullin Date: Tue, 19 May 2026 14:03:39 +0300 Subject: [PATCH] Fix x86_64_v2 support --- config.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/config.yaml b/config.yaml index 4fbaa3e..ad13162 100644 --- a/config.yaml +++ b/config.yaml @@ -2,14 +2,15 @@ actions: - replace: - target: "spec" find: | - %build + %global goamd64 v3 + %global goppc64 power9 replace: | %ifarch x86_64_v2 - sed -i 's/^GOAMD64=v3$/GOAMD64=v2/' ./go.env - grep -q '^GOAMD64=v2$' ./go.env + %global goamd64 v2 + %else + %global goamd64 v3 %endif - - %build + %global goppc64 power9 count: 1 - target: "spec" find: | @@ -31,5 +32,5 @@ actions: - name: "Eduard Abdullin" email: "eabdullin@almalinux.org" line: - - "Update env var for v2" + - "Add x86_64_v2 support" - "Disable race for riscv64"