forked from RoseBeaupreARA/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtb
executable file
·38 lines (32 loc) · 827 Bytes
/
tb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
set -euxo pipefail
cd ~/git/boomerang
deploy/scripts/linux/ci_build.sh
if [ $# -eq 0 ]
then
deploy/scripts/linux/ci_run_integration_tests.sh
deploy/scripts/linux/ci_run_requirements_tests.sh
deploy/scripts/linux/ci_run_requirement_coverage.sh
deploy/scripts/linux/ci_run_unit_tests.sh
else
if [ "$1" = "i" ]
then
deploy/scripts/linux/ci_run_integration_tests.sh
fi
if [ "$1" = "r" ]
then
deploy/scripts/linux/ci_run_requirements_tests.sh
fi
if [ "$1" = "c" ]
then
deploy/scripts/linux/ci_run_requirement_coverage.sh
fi
if [ "$1" = "u" ]
then
deploy/scripts/linux/ci_run_unit_tests.sh
fi
if [ "$1" = "d" ]
then
deploy/scripts/linux/ci_run_skycontrol-lib_deploy_tests.sh
fi
fi