Files
OldThink/.travis.yml

41 lines
904 B
YAML
Raw Normal View History

language: csharp
dist: trusty
sudo: false
os:
- linux
#- osx
addons:
apt:
2019-01-18 11:39:21 +01:00
#sources:
#- deadsnakes
packages:
2019-01-18 11:39:21 +01:00
- python3.5
- python3-pip
cache:
directories:
- packages/
- engine/Dependencies/
- engine/SS14.Client.Godot/.mono/assemblies/
#before_install:
# - if [ $TRAVIS_OS_NAME = osx ]; then brew update && brew upgrade python; fi
before_script:
2019-01-18 11:39:21 +01:00
#- "if [ $TRAVIS_OS_NAME = linux ]; then pyenv shell 3.6; fi"
- "python3.5 -m pip install --user requests"
- "nuget restore SpaceStation14Content.sln"
2019-01-18 11:39:21 +01:00
- "python3.5 RUN_THIS.py --no-prompt"
- "engine/Tools/download_godotsharp.py"
script:
2018-06-08 12:37:34 +02:00
# Prevent people from putting in textures/ (lowercase).
2018-06-08 14:56:59 +02:00
- "if [ -d Resources/textures ]; then exit 1; fi"
2019-01-18 11:39:21 +01:00
- "msbuild /p:Configuration=Debug /p:Platform=x64 /p:HEADLESS=1 /p:Configuratio=Debug /nologo /m /p:AllowMissingMacNatives=yes SpaceStation14Content.sln /p:Python=python3.5"