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 21295e8 commit 63f9818Copy full SHA for 63f9818
ci.sh
@@ -0,0 +1,28 @@
1
+#!/bin/sh
2
+
3
+set -e
4
5
+SCRIPT_DIR=$(cd $(dirname "$SCRIPT") && pwd)
6
+RABBIT_DIR=$SCRIPT_DIR/../rabbit
7
8
+cd $RABBIT_DIR
9
+make start-background-broker
10
+cd $SCRIPT_DIR
11
12
+CLIENT_DIR=$SCRIPT_DIR/projects/client/RabbitMQ.Client
13
+UNIT_DIR=$SCRIPT_DIR/projects/client/Unit
14
15
+dotnet restore $CLIENT_DIR
16
+dotnet build $CLIENT_DIR
17
+dotnet restore $UNIT_DIR
18
+dotnet build $UNIT_DIR
19
+cd $UNIT_DIR
20
21
+set +e
22
+dotnet test -f netcoreapp1.0 --where='cat != RequireSMP & cat != LongRunning & cat != GCTest'
23
+EXIT_CODE=$?
24
25
26
+$RABBIT_DIR/scripts/rabbitmqctl stop
27
28
+exit $EXIT_CODE
0 commit comments