Skip to content

Commit f92ed49

Browse files
committed
Use 11g
1 parent 819dd35 commit f92ed49

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ jobs:
2020
LD_LIBRARY_PATH: /usr/lib/oracle/18.5/client64/lib
2121
NLS_LANG: AMERICAN_AMERICA.AL32UTF8
2222
TNS_ADMIN: ./ci/network/admin
23-
DATABASE_NAME: XEPDB1
23+
DATABASE_NAME: XE
2424
TZ: Europe/Riga
25-
DATABASE_SYS_PASSWORD: Oracle18
26-
DATABASE_VERSION: 18.4.0.0
25+
ORACLE_SYSTEM_PASSWORD: oracle
2726

2827
services:
2928
oracle:
30-
image: quillbuilduser/oracle-18-xe
29+
image: deepdiver/docker-oracle-xe-11g
3130
ports:
3231
- 1521:1521
3332
env:

ci/network/admin/tnsnames.ora

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
XEPDB1 =
1+
XE =
22
(DESCRIPTION =
33
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
44
(CONNECT_DATA =
5-
(SERVICE_NAME = XEPDB1)
5+
(SERVICE_NAME = XE)
66
)
77
)

ci/setup_accounts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -ev
44

5-
${ORACLE_HOME}/bin/sqlplus system/${DATABASE_SYS_PASSWORD}@${DATABASE_NAME} <<SQL
5+
${ORACLE_HOME}/bin/sqlplus system/${ORACLE_SYSTEM_PASSWORD}@${DATABASE_NAME} <<SQL
66
@@spec/support/unlock_and_setup_hr_user.sql
77
@@spec/support/create_arunit_user.sql
88
exit

0 commit comments

Comments
 (0)