This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 60feaad11 ci(services/compfs): add integrtation tests for compfs
service (#6319)
60feaad11 is described below
commit 60feaad11d66e712cdac63ca190317e7de412f96
Author: meteorgan <[email protected]>
AuthorDate: Wed Jun 25 11:18:43 2025 +0800
ci(services/compfs): add integrtation tests for compfs service (#6319)
* ci(services/compfs): add integration tests for compfs services
* add compfs for bindings
---
.github/services/compfs/compfs/action.yml | 27 +++++++++++++++++++++++++++
bindings/java/Cargo.toml | 1 +
bindings/nodejs/Cargo.toml | 1 +
bindings/python/Cargo.toml | 1 +
4 files changed, 30 insertions(+)
diff --git a/.github/services/compfs/compfs/action.yml
b/.github/services/compfs/compfs/action.yml
new file mode 100644
index 000000000..37e9ca4ad
--- /dev/null
+++ b/.github/services/compfs/compfs/action.yml
@@ -0,0 +1,27 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+name: compfs
+description: 'Behavior test for compfs'
+
+runs:
+ using: "composite"
+ steps:
+ - name: Setup
+ shell: bash
+ run: |
+ echo "OPENDAL_COMPFS_ROOT=${{ runner.temp }}/" >> $GITHUB_ENV
diff --git a/bindings/java/Cargo.toml b/bindings/java/Cargo.toml
index c3bae56fc..6cd5b665e 100644
--- a/bindings/java/Cargo.toml
+++ b/bindings/java/Cargo.toml
@@ -147,6 +147,7 @@ services-tikv = ["opendal/services-tikv"]
services-upyun = ["opendal/services-upyun"]
services-vercel-artifacts = ["opendal/services-vercel-artifacts"]
services-yandex-disk = ["opendal/services-yandex-disk"]
+services-compfs = ["opendal/services-compfs"]
[dependencies]
anyhow = "1.0.71"
diff --git a/bindings/nodejs/Cargo.toml b/bindings/nodejs/Cargo.toml
index 95b5ab52c..e2cce734b 100644
--- a/bindings/nodejs/Cargo.toml
+++ b/bindings/nodejs/Cargo.toml
@@ -145,6 +145,7 @@ services-tikv = ["opendal/services-tikv"]
services-upyun = ["opendal/services-upyun"]
services-vercel-artifacts = ["opendal/services-vercel-artifacts"]
services-yandex-disk = ["opendal/services-yandex-disk"]
+services-compfs = ["opendal/services-compfs"]
[lib]
crate-type = ["cdylib"]
diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml
index 02121afca..6dcb30215 100644
--- a/bindings/python/Cargo.toml
+++ b/bindings/python/Cargo.toml
@@ -148,6 +148,7 @@ services-tikv = ["opendal/services-tikv"]
services-upyun = ["opendal/services-upyun"]
services-vercel-artifacts = ["opendal/services-vercel-artifacts"]
services-yandex-disk = ["opendal/services-yandex-disk"]
+services-compfs = ["opendal/services-compfs"]
# we build cp311-abi3 and cp310 wheels now, move this to pyo3 after we drop
cp310
abi3 = ["pyo3/abi3-py311"]