We'll use seperate builds per platform/arch

This commit is contained in:
Jay Lee
2019-04-12 13:21:12 -04:00
parent ecb4efa352
commit 4cbb2300df

View File

@@ -12,30 +12,39 @@ matrix:
dist: precise
python:
- "2.7.15"
env: GAMOS=linux
env:
- GAMOS=linux
- PLAT=i686
- PLATFORM=x86
- os: osx
language: generic
osx_image: xcode10.1
env: GAMOS=macos
env:
- GAMOS=macos
addons:
homebrew:
packages:
python@2
- os: windows
language: shell
env: GAMOS=windows
env:
- GAMOS=windows
- os: windows
language: shell
env:
- GAMOS=windows
- PLATFORM=x86
before_install:
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
powershell Install-WindowsFeature Net-Framework-Core;
cinst -y python2;
cinst -y --forcex86 --installdirectory=c:\Python27-32;
if [[ "$PLATFORM" == "x86" ]]; then
CINST_ARGS="--forcex86";
fi
cinst -y $CINST_ARGS python2;
export PATH=$PATH:/c/Python27/scripts;
cinst -y wixtoolset;
alias python32=/c/Python27-32/python;
fi
- python -m pip install pyinstaller
- pip install pyinstaller
install:
- cd src