File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /usr/ bin/env bash
2
2
3
3
set -o errexit
4
4
set -o pipefail
@@ -21,7 +21,7 @@ if [[ -d $GITHUB_WORKSPACE ]]
21
21
then
22
22
echo " [INFO] GITHUB_WORKSPACE is set: '$GITHUB_WORKSPACE '"
23
23
else
24
- GITHUB_WORKSPACE=" $( readlink --canonicalize-existing " $script_dir /../.." ) "
24
+ GITHUB_WORKSPACE=" $( cd " $script_dir /../.." && pwd ) "
25
25
echo " [INFO] set GITHUB_WORKSPACE to: '$GITHUB_WORKSPACE '"
26
26
fi
27
27
Original file line number Diff line number Diff line change @@ -125,3 +125,7 @@ Tests/coverage.*
125
125
126
126
# docs
127
127
docs /temp /
128
+
129
+ # ci logs
130
+ .ci /ubuntu /log /*
131
+
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This library is in early stages of development. It is meant to be used with Rabb
4
4
5
5
## How to Run
6
6
7
- - Start the broker with ` ./.ci/ubuntu/gha-setup.sh ` . Note that this has been tested on Ubuntu 22 with docker.
7
+ - Start the broker with ` ./.ci/ubuntu/gha-setup.sh start ` . Note that this has been tested on Ubuntu 22 with docker.
8
8
- Run the tests with ` dotnet test ./Build.csproj --logger "console;verbosity=detailed" /p:AltCover=true `
9
9
- Stop RabbitMQ with ` ./.ci/ubuntu/gha-setup.sh stop `
10
10
You can’t perform that action at this time.
0 commit comments