more arch stuff

This commit is contained in:
Jay Lee
2019-04-15 11:30:17 -04:00
parent 8db6d1f4f7
commit 8d485f4f74
3 changed files with 13 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ matrix:
osx_image: xcode10.1 osx_image: xcode10.1
env: env:
- GAMOS=macos - GAMOS=macos
- PLATFORM=x64 - PLATFORM=x86_64
addons: addons:
homebrew: homebrew:
packages: packages:
@@ -27,7 +27,7 @@ matrix:
language: shell language: shell
env: env:
- GAMOS=windows - GAMOS=windows
PLATFORM=x64 PLATFORM=x86_64
- os: windows - os: windows
language: shell language: shell
env: env:
@@ -50,7 +50,7 @@ matrix:
dist: precise dist: precise
env: env:
- GAMOS=linux - GAMOS=linux
- PLATFORM=i686-precise-testing - PLATFORM=x86
- TESTING=TRUE - TESTING=TRUE
allow_failures: allow_failures:
-env: -env:

View File

@@ -0,0 +1,9 @@
sudo sh -c "echo 'foreign-architecture i386' > /etc/dpkg/dpkg.cfg.d/multiarch"
apt update
apt install -y python:i386
python -V
pip install --upgrade pip
pip freeze > requirements.txt
pip install --upgrade -r requirements.txt
rm requirements.txt
pip install pyinstaller

View File

@@ -0,0 +1 @@
linux-x86_64-install.sh