Skip to content

Commit 8ebcbd6

Browse files
committed
fix e2e
1 parent 55141f9 commit 8ebcbd6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

e2e/e2e.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ set -o pipefail
77

88
readonly SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
99
readonly PROJECT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." >/dev/null && pwd)"
10-
readonly MOUNT_OUTPUT=0
1110

1211
# This file contatins psql views with complex types to validate and troubleshoot dbeam
1312

@@ -66,12 +65,9 @@ pack() {
6665
}
6766

6867
run_docker_dbeam() {
69-
OUTPUT_MOUNT_EXP=""
70-
if [ "$MOUNT_OUTPUT" -eq 1 ]; then
71-
OUTPUT_MOUNT_EXP=--mount="type=bind,source=$SCRIPT_PATH,target=$SCRIPT_PATH"
72-
fi
7368
time docker run --interactive --rm \
7469
--net="$DOCKER_NETWORK" \
70+
--mount="type=bind,source=$PROJECT_PATH/dbeam-core/target,target=/dbeam" \
7571
--mount="type=bind,source=$SCRIPT_PATH,target=$SCRIPT_PATH" \
7672
--memory=1G \
7773
--entrypoint=/usr/bin/java \

0 commit comments

Comments
 (0)