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 f9b67904d chore: Don't introduce openssl for python binding (#6790)
f9b67904d is described below
commit f9b67904d4ff2eceff559b292d08ae3c1f54402a
Author: Xuanwo <[email protected]>
AuthorDate: Mon Nov 17 19:37:45 2025 +0800
chore: Don't introduce openssl for python binding (#6790)
* chore: Don't introduce openssl for python binding
Signed-off-by: Xuanwo <[email protected]>
* Don't release ruby
Signed-off-by: Xuanwo <[email protected]>
---------
Signed-off-by: Xuanwo <[email protected]>
---
.github/workflows/release_ruby.yml | 14 +++++++++-----
bindings/python/Cargo.toml | 2 +-
2 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/release_ruby.yml
b/.github/workflows/release_ruby.yml
index 793b937e4..c9fd86dc3 100644
--- a/.github/workflows/release_ruby.yml
+++ b/.github/workflows/release_ruby.yml
@@ -21,8 +21,8 @@ on:
push:
tags:
# Triggers on version tags (v0.54.0, v0.54.0-rc.1, etc.)
- - 'v[0-9]+.[0-9]+.[0-9]+'
- - 'v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
+ - "v[0-9]+.[0-9]+.[0-9]+"
+ - "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
pull_request:
branches:
- main
@@ -150,9 +150,13 @@ jobs:
# - workflow_dispatch:
# - reattempt standard tag releases
# - pre-releases
- if: >-
- startsWith(github.ref, 'refs/tags/v') ||
- (github.event_name == 'workflow_dispatch' &&
contains(needs.build.outputs.version, 'rc'))
+
+ # if: >-
+ # startsWith(github.ref, 'refs/tags/v') ||
+ # (github.event_name == 'workflow_dispatch' &&
contains(needs.build.outputs.version, 'rc'))
+
+ # Don't start publish until we are ready
+ if: false
needs: [build, build-native]
runs-on: ubuntu-latest
diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml
index 18fd768f5..0b7671b53 100644
--- a/bindings/python/Cargo.toml
+++ b/bindings/python/Cargo.toml
@@ -152,7 +152,7 @@ services-pcloud = [
services-persy = ["opendal/services-persy"]
services-postgresql = ["opendal/services-postgresql"]
services-redb = ["opendal/services-redb"]
-services-redis = ["opendal/services-redis",
"opendal/services-redis-native-tls"]
+services-redis = ["opendal/services-redis"]
services-rocksdb = [
"opendal/services-rocksdb",
] # FIXME EXCLUDED: how to support rocksdb services in bindings?