File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,8 +5,20 @@ git rev-parse && cd "$(git rev-parse --show-cdup)"
55
66. development/env.sh
77
8- development/cleanup.sh
9-
10- .travis/install.sh
11- .travis/install_utplsql_release.sh
12- .travis/create_additional_grants_for_old_tests.sh
8+ header=" ******************************************************************************************"
9+ if ! development/cleanup.sh; then
10+ echo -e ${header} " \nFailed to cleanup utPLSQL environment\n" ${header}
11+ exit 1
12+ fi
13+ if ! .travis/install.sh; then
14+ echo -e ${header} " \nFailed to install utPLSQL from current branch into ${UT3_OWNER} schema\n" ${header}
15+ exit 1
16+ fi
17+ if ! .travis/install_utplsql_release.sh; then
18+ echo -e ${header} " \nFailed to install utPLSQL from branch ${SELFTESTING_BRANCH} into ${UT3_RELEASE_VERSION_SCHEMA} \n" ${header}
19+ exit 1
20+ fi
21+ if ! .travis/create_additional_grants_for_old_tests.sh; then
22+ echo -e ${header} " Failed to add grants needed old_tests\n" ${header}
23+ exit 1
24+ fi
You can’t perform that action at this time.
0 commit comments