39 lines
854 B
YAML
39 lines
854 B
YAML
language: csharp
|
|
|
|
dist: trusty
|
|
sudo: false
|
|
|
|
os:
|
|
- linux
|
|
#- osx
|
|
|
|
addons:
|
|
apt:
|
|
#sources:
|
|
#- deadsnakes
|
|
|
|
packages:
|
|
- python3.5
|
|
- python3-pip
|
|
|
|
cache:
|
|
directories:
|
|
- packages/
|
|
- RobustToolbox/Dependencies/
|
|
- RobustToolbox/SS14.Client.Godot/.mono/assemblies/
|
|
|
|
#before_install:
|
|
# - if [ $TRAVIS_OS_NAME = osx ]; then brew update && brew upgrade python; fi
|
|
|
|
before_script:
|
|
#- "if [ $TRAVIS_OS_NAME = linux ]; then pyenv shell 3.6; fi"
|
|
- "python3.5 -m pip install --user requests"
|
|
- "nuget restore SpaceStation14.sln"
|
|
- "python3.5 RUN_THIS.py --no-prompt"
|
|
|
|
script:
|
|
- "msbuild /p:Configuration=Debug /p:Platform=x64 /nologo /m SpaceStation14.sln /p:Python=python3.5"
|
|
- "mono packages/nunit.consolerunner/3.10.0/tools/nunit3-console.exe bin/Content.Tests/Content.Tests.dll bin/Content.IntegrationTests/Content.IntegrationTests.dll"
|
|
|
|
|