mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-29 18:31:38 +00:00
34 lines
605 B
YAML
34 lines
605 B
YAML
language: python
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: precise
|
|
python:
|
|
- "2.7.15"
|
|
env: GAMOS=linux
|
|
- os: osx
|
|
osx_image: xcode10.1
|
|
env: GAMOS=macos
|
|
addons:
|
|
homebrew:
|
|
packages:
|
|
python@2
|
|
|
|
before_install:
|
|
- pip install pyinstaller
|
|
|
|
install:
|
|
- cd src
|
|
- pyinstaller --clean -F --distpath=gam $GAMOS-gam.spec
|
|
- cp LICENSE gam
|
|
- cp whatsnew.txt gam
|
|
- cp GamCommands.txt gam
|
|
- tar cfJ gam-$TRAVIS_BUILd_NUMBER-$GAMOS.tar.xz gam/
|
|
|
|
script:
|
|
- gam/gam version
|
|
|
|
deploy:
|
|
skip_cleanup: true
|
|
file: gam-$TRAVIS_BUILd_NUMBER-$GAMOS.tar.xz
|