File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed
src/test/java/org/utplsql/api Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,9 @@ defaults:
1515jobs :
1616 build :
1717
18- env :
19- DB_URL : //localhost:1521/FREEPDB1
20-
2118 runs-on : ubuntu-latest
19+ env :
20+ DB_URL : " //localhost:1521/FREEPDB1"
2221
2322 services :
2423 oracle :
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ curl -Lk "${UTPLSQL_DOWNLOAD_URL}" -o utPLSQL.zip
55unzip -q utPLSQL.zip
66
77docker run --rm -v $( pwd) /utPLSQL:/utPLSQL -w /utPLSQL/source --network host \
8- --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@// ${DB_URL} as sysdba @install_headless.sql UT3 UT3 users
8+ --entrypoint sqlplus truemark/sqlplus:19.8 sys/oracle@${DB_URL} as sysdba @install_headless.sql UT3 UT3 users
Original file line number Diff line number Diff line change 11docker run --rm -v $( pwd) :/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \
2- sys/oracle@// ${DB_URL} as sysdba @scripts/sql/create_users.sql
2+ sys/oracle@${DB_URL} as sysdba @scripts/sql/create_users.sql
33
44docker run --rm -v $( pwd) :/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \
5- app/pass@// ${DB_URL} @scripts/sql/create_app_objects.sql
5+ app/pass@${DB_URL} @scripts/sql/create_app_objects.sql
66
77docker run --rm -v $( pwd) :/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \
8- code_owner/pass@// ${DB_URL} @scripts/sql/create_source_owner_objects.sql
8+ code_owner/pass@${DB_URL} @scripts/sql/create_source_owner_objects.sql
99
1010docker run --rm -v $( pwd) :/work -w /work/ --network host --entrypoint sqlplus truemark/sqlplus:19.8 \
11- tests_owner/pass@// ${DB_URL} @scripts/sql/create_tests_owner_objects.sql
11+ tests_owner/pass@${DB_URL} @scripts/sql/create_tests_owner_objects.sql
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public abstract class AbstractDatabaseTest {
1717
1818 static {
1919 DB_URL = EnvironmentVariableUtil .getEnvValue ("DB_URL" , "localhost:1521:XE" );
20- DB_USER = EnvironmentVariableUtil .getEnvValue ("DB_USER" , "app " );
20+ DB_USER = EnvironmentVariableUtil .getEnvValue ("DB_USER" , "APP " );
2121 DB_PASS = EnvironmentVariableUtil .getEnvValue ("DB_PASS" , "pass" );
2222 }
2323
You can’t perform that action at this time.
0 commit comments