Skip to content

Commit 57952fe

Browse files
authored
Merge pull request #3870 from kolyshkin/ci-386
ci/gha: cross-i386: fix build, rm kludges
2 parents 2685116 + da5cdfe commit 57952fe

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,16 +120,12 @@ jobs:
120120
sudo add-apt-repository -y ppa:criu/ppa
121121
# apt-add-repository runs apt update so we don't have to.
122122
123-
# Due to a bug in apt, we have to update it first
124-
# (see https://bugs.launchpad.net/ubuntu-cdimage/+bug/1871268)
125-
sudo apt -q install apt
126-
sudo apt -q install libseccomp-dev libseccomp-dev:i386 gcc-multilib criu
123+
sudo apt -q install libseccomp-dev libseccomp-dev:i386 gcc-multilib libgcc-s1:i386 criu
127124
128125
- name: install go
129126
uses: actions/setup-go@v4
130127
with:
131128
go-version: 1.x # Latest stable
132129

133130
- name: unit test
134-
# See https://go-review.googlesource.com/c/go/+/421935
135-
run: sudo -E PATH="$PATH" -- make GOARCH=386 CGO_CFLAGS=-fno-stack-protector localunittest
131+
run: sudo -E PATH="$PATH" -- make GOARCH=386 localunittest

0 commit comments

Comments
 (0)