From b32655d2bc90d89512a5ca5830be90bd56621098 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 15 May 2023 15:10:34 -0700 Subject: [PATCH] ci/gha: rm kludges for cross-i386 job The first kludge is not needed since the switch to Ubuntu 22.04 in commit 953e1cc48. The second one is not needed since Go 1.20. Signed-off-by: Kir Kolyshkin --- .github/workflows/test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d938bec4d..8136d6488 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -120,9 +120,6 @@ jobs: sudo add-apt-repository -y ppa:criu/ppa # apt-add-repository runs apt update so we don't have to. - # Due to a bug in apt, we have to update it first - # (see https://bugs.launchpad.net/ubuntu-cdimage/+bug/1871268) - sudo apt -q install apt sudo apt -q install libseccomp-dev libseccomp-dev:i386 gcc-multilib criu - name: install go @@ -131,5 +128,4 @@ jobs: go-version: 1.x # Latest stable - name: unit test - # See https://go-review.googlesource.com/c/go/+/421935 - run: sudo -E PATH="$PATH" -- make GOARCH=386 CGO_CFLAGS=-fno-stack-protector localunittest + run: sudo -E PATH="$PATH" -- make GOARCH=386 localunittest