Commit 0a89d0da authored by Bùi Bá Trường's avatar Bùi Bá Trường

truongbb - test ci

parent 0898638a
Pipeline #337 passed with stages
in 23 seconds
......@@ -8,7 +8,7 @@ before_script:
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan -t rsa 192.168.1.201 >> ~/.ssh/known_hosts
# - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- whoami
- unset SSH_ASKPASS
......@@ -22,14 +22,15 @@ build:
- master
# - merge_requests
script:
- cd /root/GitlabRunner/repo/
- ls
- rm -rf ./spring-ci
- git config --global user.name 'truongbb96'
- git config --global user.email 'truongbb@itsol.vn'
- git clone https://truongbb96:hoanghuynh0801@git.myitsol.com/truongbb96/spring-ci.git
- cd ./spring-ci
- sh ./build.sh
# - ls # test command
# - cd /root/GitlabRunner/repo/
# - ls
# - rm -rf ./spring-ci
# - git config --global user.name 'truongbb96'
# - git config --global user.email 'truongbb@itsol.vn'
# - git clone https://truongbb96:hoanghuynh0801@git.myitsol.com/truongbb96/spring-ci.git
# - cd ./spring-ci
- sh ./build-test.sh help
send_email:
stage: send_email
......
#!/bin/ bash
set -e
cmd=$(basename $0)
sub_help(){
echo "Usage: $cmd <sub-command> [options]"
echo "Sub-commands:"
echo " help Show help"
echo " checkout Checkout code from git"
echo " compile Compile java code"
echo " sonar-scan Run sonar scanner"
echo " send-email Send email after stage/pipeline"
echo ""
echo "For help with each sub-command run:"
echo "$cmd <sub-command> -h|--help"
echo ""
}
sub_checkout(){
echo "--------------CHECKING OUT GIT CODE--------------------"
ls # test command
cd /root/GitlabRunner/repo/
ls
rm -rf ./spring-ci-advanced
git config --global user.name 'truongbb96'
git config --global user.email 'truongbb@itsol.vn'
git clone https://truongbb96:hoanghuynh0801@git.myitsol.com/truongbb96/spring-ci-advanced.git
cd ./spring-ci-advanced
echo "--------------DONE CHECKING OUT GIT CODE--------------------"
}
subcommand=$1
case $subcommand in
"" | "-h" | "--help")
sub_help
;;
*)
shift
sub_${subcommand} $@
if [[ $? = 127 ]]; then
echo "Error: '$subcommand' is not a known sub-command." >&2
echo "Run '$cmd --help' for a list of known sub-commands." >&2
exit 1
fi
;;
esac
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment