diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 20635456d0..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,33 +0,0 @@ -language: generic -dist: bionic -sudo: false - -os: -- linux -#- osx - -addons: - apt: - packages: - - python3 - - python3-pip - -cache: - directories: - - packages/ - - RobustToolbox/Dependencies/ - -install: -- curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 3.1.100 - -#before_install: -# - if [ $TRAVIS_OS_NAME = osx ]; then brew update && brew upgrade python; fi - -before_script: -- "python3.6 -m pip install --user requests" -- "python3.6 RUN_THIS.py --no-prompt" - -script: -- "Tools/run_travis.sh" - - diff --git a/README.md b/README.md index d49c675d0c..4fdbdb1242 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@

Space Station 14

-[![Build Status](https://travis-ci.org/space-wizards/space-station-14.svg?branch=master)](https://travis-ci.org/space-wizards/space-station-14) - Space Station 14 is a revived attempt at an SS13 remake. This is the primary repo for Space Station 14. To prevent people forking RobustToolbox, a "content" pack is loaded by the client and server. This content pack contains everything needed to play the game on one specific server. diff --git a/SpaceStation14.sln b/SpaceStation14.sln index 13055aecaf..f92aeb592d 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -54,12 +54,10 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{806ED41A-411B-4B3B-BEB6-DEC6DCA4C205}" ProjectSection(SolutionItems) = preProject .appveyor.yml = .appveyor.yml - .travis.yml = .travis.yml Tools\gen_build_info.py = Tools\gen_build_info.py Tools\generate_hashes.ps1 = Tools\generate_hashes.ps1 Jenkinsfile = Jenkinsfile Tools\package_release_build.py = Tools\package_release_build.py - Tools\run_travis.sh = Tools\run_travis.sh EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Robust.Shared.Scripting", "RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj", "{41B450C0-A361-4CD7-8121-7072B8995CFC}" diff --git a/Tools/run_travis.sh b/Tools/run_travis.sh deleted file mode 100755 index d1b6ee8129..0000000000 --- a/Tools/run_travis.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -set -e - -# Use manually installed .NET. -# Travis is shitting itself. Wonderful. -PATH="~/.dotnet:$PATH" - -dotnet build SpaceStation14.sln /p:Python=python3.6 -dotnet test Content.Tests/Content.Tests.csproj -dotnet test Content.IntegrationTests/Content.IntegrationTests.csproj