Skip to content

Commit 88c50da

Browse files
committed
add 32bit test
1 parent b6e40e7 commit 88c50da

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,19 @@ jobs:
3535
run: pip install tox
3636
- name: Test
3737
run: tox -e test
38+
test-32bit:
39+
runs-on: ubuntu-latest
40+
strategy:
41+
fail-fast: false
42+
env:
43+
C_COMPILER: i686-linux-gnu-gcc
44+
CFLAGS: -m32
45+
steps:
46+
- uses: actions/checkout@v2
47+
- name: install 32bit libraries
48+
run: sudo dpkg --add-architecture i386 && sudo apt update && sudo apt install -y gcc-i686-linux-gnu python3.10:i386 python3.10-minimal:i386 python3.10-dev:i386 python3-pip liblzo2-dev:i386
49+
- name: Install tox
50+
run: export PYTHON=python3.10 && sudo -H $PYTHON -m pip install -U pip \
51+
&& sudo -H $PYTHON -m pip install wheel virtualenv setuptools tox
52+
- name: Test
53+
run: tox -e test

0 commit comments

Comments
 (0)