From 3a876d0484cbeaf61a0727808002bc3087c9777a Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Tue, 11 Jun 2024 12:20:37 -0400 Subject: [PATCH 1/2] Add build check against next development snapshots Signed-off-by: Andriy Redko --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3842b89..f8abe26 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,4 +39,5 @@ jobs: if: matrix.os != 'windows-latest' run: | # Task to auto update version to the next development iteration - ./gradlew updateVersion -DnewVersion=2.15.0-SNAPSHOT + ./gradlew updateVersion -DnewVersion=2.15.0-SNAPSHOT && ./gradlew build + From ae4a118d36705f06ae19a165db71bfdf61ddae78 Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Tue, 11 Jun 2024 16:10:49 -0400 Subject: [PATCH 2/2] Update .github/workflows/CI.yml Co-authored-by: Ralph Ursprung <39383228+rursprung@users.noreply.github.com> Signed-off-by: Andriy Redko --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f8abe26..ae7b433 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,6 +38,6 @@ jobs: - name: Update version to the next development iteration if: matrix.os != 'windows-latest' run: | - # Task to auto update version to the next development iteration + # Task to auto update version to the next development iteration and test against that ./gradlew updateVersion -DnewVersion=2.15.0-SNAPSHOT && ./gradlew build