Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add 32bit test #80

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,21 @@ 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@v4
- 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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Split in multiple lines?

- 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
Loading