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 Oct 29, 2021
1 parent d49a6a2 commit 71a37bf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,22 @@ jobs:
run: pip install tox
- name: Test
run: tox
test-32bit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
env:
C_COMPILER:i686-linux-gnu-gcc
CFLAGS:-m32
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install 32bit libraries
run: sudo dpkg --add-architecture i386 && sudo apt update && sudo apt install -y gcc-i686-linux-gnu python3.7:i386 python3.7-minimal:i386 python3.7-dev:i386 python3-pip liblzo2-dev:i386
- name: Install tox
run: export PYTHON=python3.7 && sudo -H $PYTHON -m pip install -U pip \
&& sudo -H $PYTHON -m pip install wheel virtualenv setuptools tox
- name: Test
run: tox

0 comments on commit 71a37bf

Please sign in to comment.