We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660af8e commit b91747bCopy full SHA for b91747b
ci.sh
@@ -6,20 +6,20 @@ SCRIPT=$0
6
SCRIPT_DIR=$(cd $(dirname "$SCRIPT") && pwd)
7
RABBIT_DIR=$SCRIPT_DIR/../rabbit
8
9
-cd $RABBIT_DIR
10
-make start-background-broker
11
-cd $SCRIPT_DIR
12
-
13
CLIENT_DIR=$SCRIPT_DIR/projects/client/RabbitMQ.Client
14
UNIT_DIR=$SCRIPT_DIR/projects/client/Unit
15
16
dotnet restore $CLIENT_DIR
17
-dotnet build $CLIENT_DIR
+dotnet build -f netstandard1.5 $CLIENT_DIR
18
dotnet restore $UNIT_DIR
19
-dotnet build $UNIT_DIR
20
-cd $UNIT_DIR
+dotnet build -f netcoreapp1.0 $UNIT_DIR
+
+cd $RABBIT_DIR
+make start-background-broker
21
22
set +e
+cd $UNIT_DIR
23
dotnet test -f netcoreapp1.0 --where='cat != RequireSMP & cat != LongRunning & cat != GCTest'
24
EXIT_CODE=$?
25
0 commit comments