-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcircle.yml
More file actions
24 lines (22 loc) · 799 Bytes
/
circle.yml
File metadata and controls
24 lines (22 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
machine:
environment:
USE_SYSTEM_NUNIT_CONSOLE: 1
dependencies:
pre:
- sudo apt-get update
- sudo apt-get install -y --no-install-recommends curl ca-certificates unzip build-essential
- wget http://download.mono-project.com/sources/mono/mono-3.10.0.tar.bz2
- tar -xvf mono-3.10.0.tar.bz2
- rm mono-3.10.0.tar.bz2
- cd mono-3.10.0/
- ./configure --prefix=/usr/local
- make
- sudo make install
- mozroots --import --sync
- mono .nuget/NuGet.exe restore Disque.Net.sln
- cd /tmp && curl https://codeload.github.com/antirez/disque/zip/master -o disque.zip && unzip disque.zip && cd disque-master && make all
- export PATH=/tmp/disque-master/src:$PATH && disque-server & disown
- sudo chmod +x build.sh
test:
override:
- ./build.sh