Files
qt5/coin/provisioning/common/macos/mount-vcpkg-cache-drive.sh
Amir Masoud Abdol 1fd6fb3565 Provisioning: Mount Vcpkg Cache Drive on macOS
Change-Id: I3038467c98a7c2a5f3b05d7b370d9ec0ea95156d
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
2023-11-05 10:05:59 +01:00

29 lines
741 B
Bash
Executable File

#!/usr/bin/env bash
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
set -e
# Avoid leaking secrets in the logs
set +x
targetDir="$HOME/vcpkg-cache"
# Specify the path to the credential file
credentialFile="$HOME/samba_credentials"
username=$(grep '^username=' "$credentialFile" | cut -d '=' -f 2)
password=$(grep '^password=' "$credentialFile" | cut -d '=' -f 2)
mkdir -p "$targetDir"
# Mount the SMB share
# Check if the mount was successful
if mount -v -t smbfs -o -N "//${username}:${password}@vcpkg-server.ci.qt.io/vcpkg" "$targetDir"
then
echo "SMB share mounted successfully!"
else
echo "Failed to mount SMB share."
fi
set -x