Skip to content

Commit dae02b2

Browse files
committedSep 16, 2023
Update liquibase syntax
1 parent a47b20f commit dae02b2

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed
 

Diff for: ‎.azure_templates/t-task-extend-sqlcl-liquibase.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ steps:
1818
#Issue with 19.3 docker images. fixed in 21
1919
sql ${{ parameters.user }}/${{ parameters.password }}@//${{ parameters.connectionString }}?oracle.net.disableOob=true<<EOF
2020
lb version
21-
lb update -debug -changelog ${{ parameters.masterchangelogfile }}
21+
lb update -debug -changelog-file ${{ parameters.masterchangelogfile }}
2222
exit;
2323
EOF
2424
exit $?

Diff for: ‎utplsql-cicd-liquibase-demo.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,17 @@ extends:
6666
user: "sys"
6767
password: "oracle"
6868
script: "source/create_user.sql"
69-
work_dir: "$(Build.SourcesDirectory)"
69+
work_dir: "$(Build.SourcesDirectory)"
70+
- displayName: "Install Tests"
71+
user: "$(DB_USER)"
72+
password: "$(DB_PASS)"
73+
script: "test/install.sql"
74+
work_dir: "$(Build.SourcesDirectory)"
7075
runliquibase:
7176
- work_dir: "$(Build.SourcesDirectory)"
7277
user: $(DB_USER)
7378
password: $(DB_PASS)
7479
masterchangelogfile: "utplsql_changelog.xml"
75-
scripts:
76-
- displayName: "Install Tests"
77-
user: "$(DB_USER)"
78-
password: "$(DB_PASS)"
79-
script: "test/install.sql"
80-
work_dir: "$(Build.SourcesDirectory)"
8180
gitCheckoutDetails:
8281
- gitRepo: ${{ variables.gitRepo }}
8382
branch: $(UTPLSQL_VERSION)

0 commit comments

Comments
 (0)
Please sign in to comment.