Skip to content

Commit b2fcd95

Browse files
committed
Added-back rigger installation to CI/CD process.
1 parent af42b6f commit b2fcd95

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.travis/install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set verify off
1010
1111
--alter session set plsql_warnings = 'ENABLE:ALL', 'DISABLE:(5004,5018,6000,6001,6003,6009,6010,7206)';
1212
alter session set plsql_optimize_level=0;
13-
@install_headless.sql $UT3_OWNER $UT3_OWNER_PASSWORD
13+
@install_headless_with_trigger.sql $UT3_OWNER $UT3_OWNER_PASSWORD
1414
SQL
1515

1616
#Run this step only on second child job (12.1 - at it's fastest)
@@ -92,5 +92,7 @@ set feedback on
9292
--Needed for testing coverage outside of main UT3 schema.
9393
grant create any procedure, drop any procedure, execute any procedure, create any type, drop any type, execute any type, under any type, select any table, update any table, insert any table, delete any table, create any table, drop any table, alter any table, select any dictionary, create any synonym, drop any synonym to $UT3_TESTER_HELPER;
9494
grant create job to $UT3_TESTER_HELPER;
95+
--Needed to allow for enable/disable of annotation triggers
96+
grant administer database trigger to $UT3_TESTER_HELPER;
9597
exit
9698
SQL

.travis/install_utplsql_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ SQL
3838

3939
"$SQLCLI" sys/$ORACLE_PWD@//$CONNECTION_STR AS SYSDBA <<SQL
4040
alter session set plsql_optimize_level=0;
41-
@install_headless.sql ${UT3_RELEASE_VERSION_SCHEMA}
41+
@install_headless_with_trigger.sql ${UT3_RELEASE_VERSION_SCHEMA}
4242
exit
4343
SQL
4444

0 commit comments

Comments
 (0)