From 9d5f4733be9a1cf37070cef1d8278f886be49b0f Mon Sep 17 00:00:00 2001 From: VictorCavichioli Date: Fri, 24 Nov 2023 09:08:14 -0300 Subject: [PATCH] Build ecChronos With Java 17 - Issue #607 In order to provide support for Java 17 in EcChronos, identify the minimal changes necessary for the project to compile and run with Java 17. Additionally, implement these changes and any necessary updates to Maven packages. This change must be merged just after a release of ecChronos with the Issue #616 done. Closes #607 --- .github/workflows/actions.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 6dfc37692..10b68bb2b 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -39,8 +39,11 @@ jobs: - name: "Standalone integration 5.0-alpha1" test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=5.0-alpha1 -DskipUTs' artifacts_dir: "standalone-integration/target" + - name: "Docker Integration" + test_suite: 'verify -P docker-integration-test -DskipUTs' + artifacts_dir: "ecchronos-binary/target" - name: "Python integration" - test_suite: 'verify -P docker-integration-test,python-integration-tests -DskipUTs' + test_suite: 'verify -P python-integration-tests -DskipUTs' artifacts_dir: "ecchronos-binary/target" steps: - uses: actions/checkout@v3