We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3301028 commit 1cd96e8Copy full SHA for 1cd96e8
.github/scripts/s3/run-integration-s3-compat.sh
@@ -4,6 +4,8 @@ set -euo pipefail
4
5
# Get the directory where this script is located
6
script_dir="$( cd "$(dirname "${0}")" && pwd )"
7
+repo_root="$(cd "${script_dir}/../../.." && pwd)"
8
+
9
10
# Source utils from the same directory
11
source "${script_dir}/utils.sh"
@@ -20,7 +22,7 @@ export BUCKET_NAME=${bucket_name}
20
22
export S3_HOST=${s3_endpoint_host}
21
23
export S3_PORT=${s3_endpoint_port}
24
-pushd "${release_dir}" > /dev/null
25
+pushd "${repo_root}" > /dev/null
26
echo -e "\n running tests with $(go version)..."
27
scripts/ginkgo -r --focus="S3 COMPATIBLE" s3/integration/
28
popd > /dev/null
0 commit comments