mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 20:31:35 +00:00
Update .travis.yml
This commit is contained in:
43
.travis.yml
43
.travis.yml
@@ -2,7 +2,8 @@ if: tag IS blank
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: linux
|
- name: "Linux Ubuntu Precise 12.04 x86_64"
|
||||||
|
os: linux
|
||||||
language: python
|
language: python
|
||||||
dist: precise
|
dist: precise
|
||||||
python:
|
python:
|
||||||
@@ -10,15 +11,8 @@ matrix:
|
|||||||
env:
|
env:
|
||||||
- GAMOS=linux
|
- GAMOS=linux
|
||||||
- PLATFORM=x86_64
|
- PLATFORM=x86_64
|
||||||
# - os: linux
|
- name "MacOS 10.13 High Sierra x86_64"
|
||||||
# language: python
|
os: osx
|
||||||
# dist: precise
|
|
||||||
# python:
|
|
||||||
# - "2.7.15"
|
|
||||||
# env:
|
|
||||||
# - GAMOS=linux
|
|
||||||
# - PLATFORM=i686
|
|
||||||
- os: osx
|
|
||||||
language: generic
|
language: generic
|
||||||
osx_image: xcode10.1
|
osx_image: xcode10.1
|
||||||
env:
|
env:
|
||||||
@@ -28,18 +22,39 @@ matrix:
|
|||||||
homebrew:
|
homebrew:
|
||||||
packages:
|
packages:
|
||||||
python@2
|
python@2
|
||||||
- os: windows
|
- name: "Windows x64"
|
||||||
|
os: windows
|
||||||
language: shell
|
language: shell
|
||||||
env:
|
env:
|
||||||
- GAMOS=windows
|
- GAMOS=windows
|
||||||
PLATFORM=x64
|
PLATFORM=x64
|
||||||
CINST_ARGS=""
|
CINST_ARGS=""
|
||||||
- os: windows
|
- name: "Windows x86"
|
||||||
|
os: windows
|
||||||
language: shell
|
language: shell
|
||||||
env:
|
env:
|
||||||
- GAMOS=windows
|
- GAMOS=windows
|
||||||
- CINST_ARGS=--forcex86
|
- CINST_ARGS=--forcex86
|
||||||
- PLATFORM=x86
|
- PLATFORM=x86
|
||||||
|
allow_failures:
|
||||||
|
- name "MacOS 10.12 Sierra x86_64"
|
||||||
|
os: osx
|
||||||
|
language: generic
|
||||||
|
osx_image: xcode9.2
|
||||||
|
env:
|
||||||
|
- GAMOS=macos
|
||||||
|
- PLATFORM=x64-sierra-testing
|
||||||
|
addons:
|
||||||
|
homebrew:
|
||||||
|
packages:
|
||||||
|
python@2
|
||||||
|
- name: "Linux Ubuntu Precise 12.04 i686"
|
||||||
|
os: linux
|
||||||
|
language: python
|
||||||
|
dist: precise
|
||||||
|
env:
|
||||||
|
- GAMOS=linux
|
||||||
|
- PLATFORM=i686-precise-testing
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
|
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
|
||||||
@@ -47,6 +62,10 @@ before_install:
|
|||||||
cinst -y $CINST_ARGS python2;
|
cinst -y $CINST_ARGS python2;
|
||||||
export PATH=$PATH:/c/Python27/scripts;
|
export PATH=$PATH:/c/Python27/scripts;
|
||||||
cinst -y wixtoolset;
|
cinst -y wixtoolset;
|
||||||
|
elif [[ "$PLATFORM" == "i686-precise-testing" ]]; then
|
||||||
|
dpkg --add-architecture i386;
|
||||||
|
apt install -y python:i386;
|
||||||
|
python -V;
|
||||||
fi
|
fi
|
||||||
- pip install pyinstaller
|
- pip install pyinstaller
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user