Can I setup tunnel in my Gitlab CI pipeline ?
Hi Brett,
You can use the following shell commands to download and execute the tunnel binary in the gitlab yml file before starting your tests.
//Downloading tunnel binary wget https://downloads.lambdatest.com/tunnel/v3/linux/64bit/LT_Linux.zip
#Extracting tunnel binary sudo apt-get install unzip unzip LT_Linux.zip
#Executing tunnel library ./LT -user ${LAMBDATEST_EMAIL} -key ${LAMBDATEST_KEY} & sleep 30