Let's try again with less failure

This commit is contained in:
ShadowLarkens
2020-07-21 17:39:19 -07:00
parent 8ed4d6e173
commit 5e86d718fd
4 changed files with 15 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
#pretending we're C because otherwise ruby will initialize, even with "language: dm".
language: c
dist: xenial
env:
global:

View File

@@ -8,4 +8,6 @@ export PHP_VERSION=5.6
# Byond Major
export BYOND_MAJOR=513
# Byond Minor
export BYOND_MINOR=1526
export BYOND_MINOR=1526
# Macro Count
export MACRO_COUNT=4

View File

@@ -0,0 +1,10 @@
#!/bin/bash
set -euo pipefail
source _build_dependencies.sh
source ~/.nvm/nvm.sh
nvm use $NODE_VERSION
cd tgui
bin/tgui --ci
cd ..

View File

@@ -1,5 +1,7 @@
#!/bin/bash
source _build_dependencies.sh
RED='\033[0;31m'
NC='\033[0m'
FAILED=0