Skip to content

Commit

Permalink
add 32bit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Jul 3, 2024
1 parent b6e40e7 commit 88c50da
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,19 @@ jobs:
run: pip install tox
- name: Test
run: tox -e test
test-32bit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
env:
C_COMPILER: i686-linux-gnu-gcc
CFLAGS: -m32
steps:
- uses: actions/checkout@v2
- name: install 32bit libraries
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
- name: Install tox
run: export PYTHON=python3.10 && sudo -H $PYTHON -m pip install -U pip \
&& sudo -H $PYTHON -m pip install wheel virtualenv setuptools tox
- name: Test
run: tox -e test

0 comments on commit 88c50da

Please sign in to comment.