From 950ade9befe553e8de7bc3df80ea8666a52d2732 Mon Sep 17 00:00:00 2001 From: morazow Date: Thu, 10 Aug 2023 14:42:33 +0200 Subject: [PATCH 1/3] test --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 38ea5de0..0ad185c0 100644 --- a/pom.xml +++ b/pom.xml @@ -809,7 +809,7 @@ com.diffplug.spotless spotless-maven-plugin - 2.37.0 + 2.38.0 From 26f15de99607e66c395db391a171d80677b80f0c Mon Sep 17 00:00:00 2001 From: morazow Date: Thu, 10 Aug 2023 14:51:15 +0200 Subject: [PATCH 2/3] Skip for now --- .github/workflows/ci-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index d88cf6a1..a3f079d7 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -57,6 +57,7 @@ jobs: mvn --batch-mode clean verify \ -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn \ -DtrimStackTrace=false \ + -Dossindex.skip=true -Dproject-keeper.skip=true \ -Dcom.exasol.dockerdb.image=${{ matrix.exasol-docker-version }} env: EXASOL_DOCKER_VERSION: ${{ matrix.exasol-docker-version }} @@ -76,4 +77,4 @@ jobs: -Dsonar.login=$SONAR_TOKEN env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 6e3b63139b2608be196b6d7ac74a5e7e5f6a10da Mon Sep 17 00:00:00 2001 From: morazow Date: Thu, 10 Aug 2023 15:47:46 +0200 Subject: [PATCH 3/3] Added git hashs command --- .github/workflows/ci-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index a3f079d7..2cf39995 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -52,6 +52,8 @@ jobs: run: echo 'testcontainers.reuse.enable=true' > "$HOME/.testcontainers.properties" - name: Run scalafix linting run: mvn --batch-mode clean compile test-compile scalastyle:check scalafix:scalafix + - name: Git hash + run: git rev-parse HEAD - name: Run tests and build with Maven run: | mvn --batch-mode clean verify \