File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
1
+ pipeline :
2
+ build :
3
+ image : ubuntu:14.04
4
+ commands :
5
+ # set lang for unicode support
6
+ - export LC_ALL=C.UTF-8
7
+ # bingehack prep
8
+ - apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 16126D3A3E5C1192
9
+ - apt-get update -qq
10
+ - apt-get install -qq g++ gcc flex bison libbison-dev libjansson-dev postgresql-client libpq-dev libsdl2-dev libpng-dev
11
+ # bingehack build
12
+ - ./travis-build
Original file line number Diff line number Diff line change 1
1
[ ![ Build Status] ( https://travis-ci.org/ComputerScienceHouse/bingehack4.png?branch=master )] ( https://travis-ci.org/ComputerScienceHouse/bingehack4 )
2
+ [ ![ Build Status] ( https://drone.csh.rit.edu/api/badges/ComputerScienceHouse/bingehack4/status.svg )] ( https://drone.csh.rit.edu/ComputerScienceHouse/bingehack4 )
2
3
3
4
# BingeHack 4 #
4
5
@@ -44,6 +45,7 @@ We test our client game terminal support for functionality on:
44
45
45
46
* [ Play BingeHack4!] ( telnet://bingehack.csh.rit.edu )
46
47
* [ CSH's Travis-CI Build Server: BingeHack4 Project] ( https://travis-ci.org/ComputerScienceHouse/bingehack4 )
48
+ * [ CSH's Drone Build Server: BingeHack4 Project] ( https://drone.csh.rit.edu/ComputerScienceHouse/bingehack4 )
47
49
* [ BingeHack4's Wiki] ( https://github.com/ComputerScienceHouse/bingehack4/wiki )
48
50
* [ Upstream NetHack4 Git Repository] ( http://gitorious.org/nitrohack/ais523/commits/nicehack )
49
51
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ elif [[ "$BUILD_SYSTEM" == aimake ]]; then
16
16
tempfile=" $( mktemp) "
17
17
trap " rm -f \" $tempfile \" " EXIT ERR
18
18
19
- ../aimake --with=server -i /tmp/bingehack4 2>&1 | tee " $tempfile "
19
+ ../aimake --no-sanity-checks -- with=server -i /tmp/bingehack4 2>&1 | tee " $tempfile "
20
20
grep -qi " fail" " $tempfile " && exit 1
21
21
else
22
22
echo " Unsupported build system $BUILD_SYSTEM " >&2
You can’t perform that action at this time.
0 commit comments