summaryrefslogtreecommitdiff
path: root/test/end-to-end/remote-execution/large-blobs.sh
diff options
context:
space:
mode:
authorAlberto Sartori <alberto.sartori@huawei.com>2023-03-09 12:10:17 +0100
committerAlberto Sartori <alberto.sartori@huawei.com>2023-03-10 09:38:39 +0100
commit15fec6cd3b63e547c3cedf35b8d58b8e09d1c25f (patch)
tree74c34d990062fd7524deb2f1d782238dafdf230c /test/end-to-end/remote-execution/large-blobs.sh
parentc3b13b4932e26805100cfafc695eed822f7c3051 (diff)
downloadjustbuild-15fec6cd3b63e547c3cedf35b8d58b8e09d1c25f.tar.gz
tests: get rid of credentials repo since tests now use just execute as a remote endpoint
Diffstat (limited to 'test/end-to-end/remote-execution/large-blobs.sh')
-rw-r--r--test/end-to-end/remote-execution/large-blobs.sh12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/end-to-end/remote-execution/large-blobs.sh b/test/end-to-end/remote-execution/large-blobs.sh
index a4d25ffa..21804977 100644
--- a/test/end-to-end/remote-execution/large-blobs.sh
+++ b/test/end-to-end/remote-execution/large-blobs.sh
@@ -17,7 +17,6 @@
set -eu
readonly JUST="${PWD}/bin/tool-under-test"
-readonly CREDENTIALS_DIR="${PWD}/credentials"
# create a sufficiently large (>4MB) file for testing upload/download (16MB)
dd if=/dev/zero of=large.file bs=1024 count=$((16*1024))
@@ -49,17 +48,8 @@ run_tests() {
TYPE="remote"
REMOTE_ARGS="-r $1"
REMOTE_BUILD_ARGS="--remote-execution-property $2"
- if [ -f "${CREDENTIALS_DIR}/ca.crt" ]; then
- AUTH_ARGS=" --tls-ca-cert ${CREDENTIALS_DIR}/ca.crt "
- if [ -f "${CREDENTIALS_DIR}/client.crt" ]; then
- AUTH_ARGS=" --tls-client-cert ${CREDENTIALS_DIR}/client.crt "${AUTH_ARGS}
- fi
- if [ -f "${CREDENTIALS_DIR}/client.key" ]; then
- AUTH_ARGS=" --tls-client-key ${CREDENTIALS_DIR}/client.key "${AUTH_ARGS}
- fi
- fi
fi
- ARGS="$COMMON_ARGS $REMOTE_ARGS ${AUTH_ARGS}"
+ ARGS="$COMMON_ARGS $REMOTE_ARGS"
BUILD_ARGS="$ARGS $REMOTE_BUILD_ARGS"
echo