Added gitlab tester script for linux
This commit is contained in:
parent
b506bcb7ee
commit
c85ca7b176
28
gitlabTest.sh
Executable file
28
gitlabTest.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
green='\e[0;32m'
|
||||
close='\e[0m'
|
||||
mkdir -p /tmp/tests
|
||||
echo -e "${green}Making test directories${close}"
|
||||
cd /tmp/tests
|
||||
mkdir a
|
||||
mkdir b
|
||||
cd /tmp/tests/a
|
||||
git init
|
||||
git remote add origin git@76.182.74.61:hitchhikers/MyRobot.git
|
||||
echo -e "${green}SSH cloning${close}"
|
||||
git pull origin master
|
||||
echo -e "${green}"
|
||||
ls
|
||||
echo -e "${close}"
|
||||
cd /tmp/tests/b
|
||||
git init
|
||||
git remote add origin https://76.182.74.61/gitlab/hitchhikers/MyRobot.git
|
||||
git config http.sslVerify false
|
||||
echo -e "${green}HTTPS cloning${close}"
|
||||
git pull origin master
|
||||
echo -e "${green}"
|
||||
ls
|
||||
echo -e "${close}"
|
||||
echo -e "${green}Removing test directories${close}"
|
||||
rm -rf tests
|
||||
echo -e "${green}Done testing!${close}"
|
Loading…
Reference in New Issue
Block a user