Skip to content

Commit

Permalink
ci: add i386 unit test run
Browse files Browse the repository at this point in the history
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Jan 26, 2021
1 parent c69ae75 commit fdf653e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# criu repo
sudo add-apt-repository -y ppa:criu/ppa
# apt-add-repository runs apt update so we don't have to
sudo apt -q install libseccomp-dev criu skopeo
sudo apt -q install libseccomp-dev criu skopeo gcc-multilib
- name: install go ${{ matrix.go-version }}
uses: actions/setup-go@v2
Expand Down Expand Up @@ -69,6 +69,10 @@ jobs:
if: matrix.rootless != 'rootless'
run: sudo -E PATH="$PATH" -- make localunittest

- name: unit test (i386)
if: matrix.rootless != 'rootless'
run: sudo -E PATH="$PATH" -- make GOARCH=386 localunittest

- name: add rootless user
if: matrix.rootless == 'rootless'
run: |
Expand Down

0 comments on commit fdf653e

Please sign in to comment.