We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6e40e7 commit 88c50daCopy full SHA for 88c50da
.github/workflows/test.yaml
@@ -35,3 +35,19 @@ jobs:
35
run: pip install tox
36
- name: Test
37
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