From 6eadfc245d665fbb4e87aed823153dbebef88683 Mon Sep 17 00:00:00 2001 From: jandroav Date: Tue, 12 Dec 2023 10:58:39 +0100 Subject: [PATCH 1/2] chore(pom.xml): add newline at the end of the file for consistency and to adhere to best practices --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e1a0867..a455cee 100644 --- a/pom.xml +++ b/pom.xml @@ -267,4 +267,4 @@ - + \ No newline at end of file From ad2ff12720d0e73c14c69c1e0e01fd6fe0f91266 Mon Sep 17 00:00:00 2001 From: jandroav Date: Tue, 12 Dec 2023 11:12:05 +0100 Subject: [PATCH 2/2] chore(build-nightly.yml): add extra command to install Vertica JDBC driver chore(test.yml): add extra command to install Vertica JDBC driver --- .github/workflows/build-nightly.yml | 1 + .github/workflows/test.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/build-nightly.yml b/.github/workflows/build-nightly.yml index 457724d..d2bb48e 100644 --- a/.github/workflows/build-nightly.yml +++ b/.github/workflows/build-nightly.yml @@ -10,4 +10,5 @@ jobs: uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.8 with: nightly: true + extraCommand: mvn install:install-file -Dfile=lib/vertica-jdbc-7.1.0-0.jar -DgroupId=vertica-jdbc -DartifactId=com.vertica -Dversion=7.1.0 -Dpackaging=jar secrets: inherit diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d4806f..e62b33f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,6 +18,8 @@ jobs: needs: authorize uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.8 secrets: inherit + with: + extraCommand: mvn install:install-file -Dfile=lib/vertica-jdbc-7.1.0-0.jar -DgroupId=vertica-jdbc -DartifactId=com.vertica -Dversion=7.1.0 -Dpackaging=jar integration-tests: name: Java ${{ matrix.java }}