Skip to content

Commit

Permalink
Change of docker image references in demo project from `utplsqlv3/ora…
Browse files Browse the repository at this point in the history
…cledb:19c-se2-small` to `gvenzl/oracle-xe:21-faststart`

Resolves: #16
  • Loading branch information
jgebal committed Jul 9, 2023
1 parent 69d0071 commit eff5315
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .azure_templates/vars/vars-global.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variables:
containerRegistry: "utPLSQL-docker"
dockerRepo: "utplsqlv3/oracledb"
dockerRepo: "gvenzl/oracle-xe"
gitRepo: "https://github.com/utPLSQL/utPLSQL.git"
sqlclUrl: "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-latest.zip"
utplsqlcliUrl: "https://github.com/utPLSQL/utPLSQL-cli/releases/download/$(UTPLSQL_CLI_VERSION)/utPLSQL-cli.zip"
Expand Down
10 changes: 5 additions & 5 deletions utlplsql-demo-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ variables:
UTPLSQL_CLI_DIR: $(Build.BinariesDirectory)/utPLSQL-cli
UTPLSQL_CLI_VERSION: 'v3.1.8'
UTPLSQL_VERSION: 'v3.1.11'
DOCKHER_HUB_REPO: 'utplsqlv3/oracledb'
DOCKHER_HUB_REPO: 'gvenzl/oracle-xe'
DB_USER: ut3_demo
DB_PASS: ut3_demo

Expand Down Expand Up @@ -45,16 +45,16 @@ jobs:
- template: .azure_templates/t-extend-database-build.yml
parameters:
containerRegistry: utPLSQL-docker
dockerRepo: utplsqlv3/oracledb
dockerRepo: gvenzl/oracle-xe
utplsqlVersion: ${UTPLSQL_VERSION}
utplsqlDir: ${UTPLSQL_DIR}
test_user: ${DB_USER}
test_pwd: ${DB_PASS}
targetDatabases:
- oracleVersion: "19c-se2-small"
connectionString: "127.0.0.1:1521/ORCLCDB"
- oracleVersion: "21-faststart"
connectionString: "127.0.0.1:1521/XE"
dockerPortMap: "1521"
dockerOptions: "--shm-size=1g"
dockerOptions: "21-faststart"
scripts:
- displayName: "Install utPLSQL"
user: "sys"
Expand Down
16 changes: 8 additions & 8 deletions utplsql-cicd-flyway-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ extends:
- name: BuildDatabase
containerRegistry: ${{ variables.containerRegistry }}
dockerRepo: ${{ variables.dockerRepo }}
connectionString: "127.0.0.1:1521/ORCLCDB"
jdbcConnectionString: "UTBUILD:1521:ORCLCDB"
connectionString: "127.0.0.1:1521/XE"
jdbcConnectionString: "UTBUILD:1521:XE"
environment: "build"
artifactName: ${{ variables.artifactName }}
packages:
Expand All @@ -57,9 +57,9 @@ extends:
url: ${{ variables.ojdbcurl }}
createDatabase:
- dbname: UTBUILD
oracleVersion: "19c-se2-small"
oracleVersion: "21-faststart"
dockerPortMap: "1521"
dockerOptions: "--shm-size=1g"
dockerOptions: ""
scripts:
- displayName: "Install utPLSQL"
user: "sys"
Expand Down Expand Up @@ -100,15 +100,15 @@ extends:
display_name: Deploy code to Test Env
dependsOn: BuildDatabase
target_environment: TEST
connectionString: "127.0.0.1:1521/ORCLCDB"
jdbcConnectionString: "UTTEST:1521:ORCLCDB"
connectionString: "127.0.0.1:1521/XE"
jdbcConnectionString: "UTTEST:1521:XE"
containerRegistry: ${{ variables.containerRegistry }}
dockerRepo: ${{ variables.dockerRepo }}
createDatabase:
- dbname: UTTEST
oracleVersion: "19c-se2-small"
oracleVersion: "21-faststart"
dockerPortMap: "1521"
dockerOptions: "--shm-size=1g"
dockerOptions: ""
packages:
- name: sqlcl
download_location: "$(Build.BinariesDirectory)/sqlcl-latest.zip"
Expand Down
12 changes: 6 additions & 6 deletions utplsql-cicd-liquibase-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extends:
- name: BuildDatabase
containerRegistry: ${{ variables.containerRegistry }}
dockerRepo: ${{ variables.dockerRepo }}
connectionString: "127.0.0.1:1521/ORCLCDB"
connectionString: "127.0.0.1:1521/XE"
environment: "build"
artifactName: ${{ variables.artifactName }}
releaseMethod: "liquibase"
Expand All @@ -53,9 +53,9 @@ extends:
addToPath: "$(UTPLSQL_CLI_DIR)/bin"
createDatabase:
- dbname: UTBUILD
oracleVersion: "19c-se2-small"
oracleVersion: "21-faststart"
dockerPortMap: "1521"
dockerOptions: "--shm-size=1g"
dockerOptions: ""
scripts:
- displayName: "Install utPLSQL"
user: "sys"
Expand Down Expand Up @@ -94,14 +94,14 @@ extends:
display_name: Deploy code to Test Env
dependsOn: BuildDatabase
target_environment: TEST
connectionString: "127.0.0.1:1521/ORCLCDB"
connectionString: "127.0.0.1:1521/XE"
containerRegistry: ${{ variables.containerRegistry }}
dockerRepo: ${{ variables.dockerRepo }}
createDatabase:
- dbname: UTTEST
oracleVersion: "19c-se2-small"
oracleVersion: "21-faststart"
dockerPortMap: "1521"
dockerOptions: "--shm-size=1g"
dockerOptions: ""
packages:
- name: sqlcl
download_location: "$(Build.BinariesDirectory)/sqlcl-latest.zip"
Expand Down

0 comments on commit eff5315

Please sign in to comment.