Skip to content

Commit f9b6790

Browse files
authored
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]>
1 parent ec8d0cd commit f9b6790

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/release_ruby.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ on:
2121
push:
2222
tags:
2323
# Triggers on version tags (v0.54.0, v0.54.0-rc.1, etc.)
24-
- 'v[0-9]+.[0-9]+.[0-9]+'
25-
- 'v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
24+
- "v[0-9]+.[0-9]+.[0-9]+"
25+
- "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+"
2626
pull_request:
2727
branches:
2828
- main
@@ -150,9 +150,13 @@ jobs:
150150
# - workflow_dispatch:
151151
# - reattempt standard tag releases
152152
# - pre-releases
153-
if: >-
154-
startsWith(github.ref, 'refs/tags/v') ||
155-
(github.event_name == 'workflow_dispatch' && contains(needs.build.outputs.version, 'rc'))
153+
154+
# if: >-
155+
# startsWith(github.ref, 'refs/tags/v') ||
156+
# (github.event_name == 'workflow_dispatch' && contains(needs.build.outputs.version, 'rc'))
157+
158+
# Don't start publish until we are ready
159+
if: false
156160
needs: [build, build-native]
157161
runs-on: ubuntu-latest
158162

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ services-pcloud = [
152152
services-persy = ["opendal/services-persy"]
153153
services-postgresql = ["opendal/services-postgresql"]
154154
services-redb = ["opendal/services-redb"]
155-
services-redis = ["opendal/services-redis", "opendal/services-redis-native-tls"]
155+
services-redis = ["opendal/services-redis"]
156156
services-rocksdb = [
157157
"opendal/services-rocksdb",
158158
] # FIXME EXCLUDED: how to support rocksdb services in bindings?

0 commit comments

Comments
 (0)