From dac373b854cfe5abd0ba4e5aa4f945f143046a2a Mon Sep 17 00:00:00 2001 From: tison Date: Sun, 24 Sep 2023 12:09:18 +0800 Subject: [PATCH 1/3] build(bindings/java): upgrade maven wrapper version Signed-off-by: tison --- bindings/java/.mvn/wrapper/maven-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/java/.mvn/wrapper/maven-wrapper.properties b/bindings/java/.mvn/wrapper/maven-wrapper.properties index 3c6fda8c6e43..ac184013fc0d 100644 --- a/bindings/java/.mvn/wrapper/maven-wrapper.properties +++ b/bindings/java/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.2/apache-maven-3.9.2-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.4/apache-maven-3.9.4-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar From 0c6752559b529cbca4f8371d7d902610895e07bc Mon Sep 17 00:00:00 2001 From: tison Date: Sun, 24 Sep 2023 12:12:50 +0800 Subject: [PATCH 2/3] trigger enabled services tests for java binding Signed-off-by: tison --- .github/workflows/service_test_redis.yml | 1 + .github/workflows/service_test_s3.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/service_test_redis.yml b/.github/workflows/service_test_redis.yml index ccfba3671760..fa751a31a75c 100644 --- a/.github/workflows/service_test_redis.yml +++ b/.github/workflows/service_test_redis.yml @@ -30,6 +30,7 @@ on: - "!core/src/docs/**" - "!core/src/services/**" - "core/src/services/redis/**" + - "bindings/java/**" - ".github/workflows/service_test_redis.yml" - "fixtures/redis/**" diff --git a/.github/workflows/service_test_s3.yml b/.github/workflows/service_test_s3.yml index 15507b2bbe65..94b5441a28d4 100644 --- a/.github/workflows/service_test_s3.yml +++ b/.github/workflows/service_test_s3.yml @@ -30,6 +30,7 @@ on: - "!core/src/docs/**" - "!core/src/services/**" - "core/src/services/s3/**" + - "bindings/java/**" - ".github/workflows/service_test_s3.yml" - "fixtures/s3/**" From c22c9f2a8802b05cab68c43dba82e01ca8b1129b Mon Sep 17 00:00:00 2001 From: tison Date: Sun, 24 Sep 2023 12:19:36 +0800 Subject: [PATCH 3/3] fix test name Signed-off-by: tison --- .github/workflows/service_test_redis.yml | 2 +- .github/workflows/service_test_s3.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/service_test_redis.yml b/.github/workflows/service_test_redis.yml index fa751a31a75c..512c624706c8 100644 --- a/.github/workflows/service_test_redis.yml +++ b/.github/workflows/service_test_redis.yml @@ -210,7 +210,7 @@ jobs: - name: Test shell: bash working-directory: bindings/java - run: ./mvnw test -Dtest=org.apache.opendal.behavior.RedisTest -Dcargo-build.features=services-redis + run: ./mvnw test -Dtest=org.apache.opendal.test.behavior.RedisTest -Dcargo-build.features=services-redis env: OPENDAL_REDIS_TEST: on OPENDAL_REDIS_ENDPOINT: tcp://127.0.0.1:6379 diff --git a/.github/workflows/service_test_s3.yml b/.github/workflows/service_test_s3.yml index 94b5441a28d4..1cedd93d6eda 100644 --- a/.github/workflows/service_test_s3.yml +++ b/.github/workflows/service_test_s3.yml @@ -263,7 +263,7 @@ jobs: - name: Test shell: bash working-directory: bindings/java - run: ./mvnw test -Dtest=org.apache.opendal.behavior.S3Test + run: ./mvnw test -Dtest=org.apache.opendal.test.behavior.S3Test env: OPENDAL_S3_TEST: on OPENDAL_S3_BUCKET: test