Skip to content

Commit

Permalink
test: fix 32bit build
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Sep 26, 2022
1 parent ed404bd commit 832eec5
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
Expand Up @@ -7,10 +7,10 @@ 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 locales python3-pip debianutils \
&& python3 -m pip install tox coveralls \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq python3.7 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 -m tox -e py \
&& python3.7 -m tox -e py \
&& coverage report"

0 comments on commit 832eec5

Please sign in to comment.