2019-12-16 00:46:09 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
# Use manually installed .NET.
|
|
|
|
|
# Travis is shitting itself. Wonderful.
|
|
|
|
|
PATH="~/.dotnet:$PATH"
|
|
|
|
|
|
2020-02-03 10:05:20 -08:00
|
|
|
dotnet build SpaceStation14.sln /p:Python=python3.6
|
2019-12-16 00:46:09 +01:00
|
|
|
dotnet test Content.Tests/Content.Tests.csproj
|
|
|
|
|
dotnet test Content.IntegrationTests/Content.IntegrationTests.csproj
|