Skip to content

Commit

Permalink
fix 32bit test
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Jul 11, 2023
1 parent edb8ba0 commit 9977147
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build32bit.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/bin/bash

if [[ -z "${TEST_32BIT}" ]]; then
echo "Not on Travis"
echo "Not on CI"
exit 0
fi

docker run -v ${PWD}:/code -e INSTALL_REQUIREMENTS=${INSTALL_REQUIREMENTS} i386/ubuntu bash -c "
apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq python3.7 locales python3-pip debianutils \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq python3.8 locales python3-pip debianutils \
&& python3.7 -m pip install tox coveralls \
&& locale-gen en_US.UTF-8 \
&& export LANG='en_US.UTF-8' \
&& cd /code \
&& python3.7 -m tox -e py \
&& python3.8 -m tox -e py \
&& coverage report"

0 comments on commit 9977147

Please sign in to comment.