Skip to content

Commit 7723339

Browse files
committed
Fix build
1 parent 7dd1ac9 commit 7723339

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mono: none
55
dotnet: 1.0.4
66
script:
77
- ./build.sh --quiet verify
8-
- pushd Wukong.Tests && dotnet restore -r linux-x64 win-x86 win-x64 && dotnet xunit && popd
8+
- pushd Wukong.Tests && dotnet restore && dotnet xunit && popd
99
- ./publish.sh linux-x64 win-x86 win-x64
1010
deploy:
1111
skip_cleanup: true

build.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
#!/usr/bin/env bash
2-
cd Wukong && dotnet restore && dotnet build
2+
set -e
3+
cd Wukong
4+
dotnet restore -r linux-x64 -r win-x64 -r win-x86
5+
dotnet build

0 commit comments

Comments
 (0)