forked from dncuug/X.PagedList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwercker.yml
36 lines (32 loc) · 868 Bytes
/
wercker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
box: microsoft/aspnet
# Build definition
build:
# Show base information
steps:
- script:
name: show base information
code: |
echo mono --version
# update mono
- script:
name: update mono
code: |
apt-get update
#sudo apt-get -y install mono-devel
#sudo apt-get -y install mono-complete
apt-get -y install referenceassemblies-pcl
# packages restore
- script:
name: packages restore
code: |
cd src
nuget restore
dnu restore
# Executes build commands
- script:
name: run build
code: |
cd src
xbuild X.PagedList/X.PagedList.csproj
dnu build X.PagedList.Mvc6/project.json
dnu build X.PagedList.Mvc6.Example/project.json