Skip to content

Commit

Permalink
Fix incorrect script for DB QA
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr committed Jul 16, 2024
1 parent c2d5412 commit b80d858
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/db2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
./mvnw clean install
${MAVEN_ARGS}
-PcleanDb,db2,distro
-P'!include-spring-boot-samples
-P'!include-spring-boot-samples'
-Djdbc.url=jdbc:db2://localhost:${{ job.services.db2.ports[50000] }}/flowable
-Djdbc.username=db2inst1
-Djdbc.password=flowable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
./mvnw clean install
${MAVEN_ARGS}
-PcleanDb,mariadb,distro
-P'!include-spring-boot-samples
-P'!include-spring-boot-samples'
-Djdbc.url=jdbc:mariadb://localhost:${{ job.services.mariadb.ports[3306] }}/flowable?characterEncoding=UTF-8
-Djdbc.username=flowable
-Djdbc.password=flowable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
./mvnw clean install
${MAVEN_ARGS}
-PcleanDb,mysql,distro
-P'!include-spring-boot-samples
-P'!include-spring-boot-samples'
-Djdbc.url=jdbc:mysql://localhost:${{ job.services.mysql.ports[3306] }}/flowable?characterEncoding=UTF-8
-Djdbc.username=flowable
-Djdbc.password=flowable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
./mvnw clean install
${MAVEN_ARGS}
-PcleanDb,oracle,distro
-P'!include-spring-boot-samples
-P'!include-spring-boot-samples'
-Djdbc.url=jdbc:oracle:thin:@localhost:${{ job.services.oracle.ports[1521] }}/${{ matrix.serviceName }}
-Djdbc.username=flowable
-Djdbc.password=flowable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
./mvnw clean install
${MAVEN_ARGS}
-PcleanDb,postgresql,distro
-P'!include-spring-boot-samples
-P'!include-spring-boot-samples'
-Djdbc.url=jdbc:postgresql://localhost:${{ job.services.postgres.ports[5432] }}/flowable
-Djdbc.username=flowable
-Djdbc.password=flowable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sql-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
./mvnw clean install
${MAVEN_ARGS}
-PcleanDb,mssql,distro
-P'!include-spring-boot-samples
-P'!include-spring-boot-samples'
-Djdbc.url="jdbc:sqlserver://localhost:${{ job.services.mssql.ports[1433] }};database=flowable;encrypt=false"
-Djdbc.username=flowable
-Djdbc.password=flowable
Expand Down

0 comments on commit b80d858

Please sign in to comment.