@@ -28,41 +28,21 @@ jobs:
2828 matrix :
2929 include :
3030 - id : 1
31- db_version_name : ' 11XE'
32- oracle-sid : ' XE'
33- oracle-version : " gvenzl/oracle-xe:11-full"
34- oracle-base : ' /u01/app/oracle'
35- - id : 2
36- db_version_name : ' 12.1EE'
31+ db_version_name : ' 19se'
3732 oracle-sid : ' ORCLCDB'
38- oracle-version : " utplsqlv3/oracledb:12c-r1-ee-small"
39- oracle-base : ' /opt/oracle'
40- # - id: 3
41- # db_version_name: '12.2se'
42- # oracle-sid: 'ORCLCDB'
43- # oracle-version: "utplsqlv3/oracledb:12c-r2-se2-small"
44- # oracle-base: '/opt/oracle'
45- - id : 4
46- db_version_name : ' 18XE'
47- oracle-sid : ' XE'
48- oracle-version : " gvenzl/oracle-xe:18-slim"
33+ oracle-version : " utplsqlv3/oracledb:19c-se2-small"
4934 oracle-base : ' /opt/oracle'
50- # TODO - need to add healthcheck.sh into our containers
51- # - id: 5
52- # db_version_name: '19se'
53- # oracle-sid: 'ORCLCDB'
54- # oracle-version: "utplsqlv3/oracledb:19c-se2-small"
55- # oracle-base: '/opt/oracle'
56- - id : 6
35+ - id : 2
5736 db_version_name : ' 21XE'
5837 oracle-sid : ' XE'
5938 oracle-version : " gvenzl/oracle-xe:21-slim"
6039 oracle-base : ' /opt/oracle'
61- - id : 7
40+ - id : 3
6241 db_version_name : ' 23free'
6342 oracle-sid : ' FREEPDB1'
6443 oracle-version : " gvenzl/oracle-free:23-slim"
6544 oracle-base : ' /opt/oracle'
45+ # TODO - need to add healthcheck.sh into our containers
6646
6747 services :
6848 html_checker :
@@ -124,17 +104,17 @@ jobs:
124104 run : docker run --rm -v $(pwd):/utPLSQL -w /utPLSQL --network host --entrypoint bash ${DOCKER_ENV} ${ORACLE_VERSION} .github/scripts/install.sh
125105
126106 - name : Check code style
127- if : ${{ matrix.id == 1 }}
107+ if : ${{ matrix.db_version_name == '21XE' }}
128108 id : check-coding-style
129109 run : docker run --rm -v $(pwd):/utPLSQL -w /utPLSQL --network host --entrypoint "$SQLCLI" ${DOCKER_ENV} ${ORACLE_VERSION} $UT3_DEVELOP_SCHEMA/$UT3_DEVELOP_SCHEMA_PASSWORD@//$CONNECTION_STR @development/utplsql_style_check.sql
130110
131111 - name : Validate utPLSQL uninstall
132- if : ${{ matrix.id == 1 }}
112+ if : ${{ matrix.db_version_name == '21XE' }}
133113 id : validate-uninstall
134114 run : docker run --rm -v $(pwd):/utPLSQL -w /utPLSQL --network host --entrypoint bash ${DOCKER_ENV} ${ORACLE_VERSION} .github/scripts/uninstall_validate_utplsql.sh
135115
136116 - name : Reinstall utPLSQL
137- if : ${{ matrix.id == 1 }}
117+ if : ${{ matrix.db_version_name == '21XE' }}
138118 id : reinstall-utplsql
139119 run : docker run --rm -v $(pwd):/utPLSQL -w /utPLSQL --network host --entrypoint bash ${DOCKER_ENV} ${ORACLE_VERSION} .github/scripts/install.sh
140120
0 commit comments