Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump OpenDAL to 0.50.0 #5110

Merged
merged 4 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ on:
branches:
- main
paths:
- "integrations/cloudfilter/**"
- "integrations/cloud_filter/**"
- "core/**"
- ".github/workflows/ci_integration_cloudfilter.yml"
- ".github/workflows/ci_integration_cloud_filter.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand All @@ -47,5 +47,5 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Cargo clippy
working-directory: integrations/cloudfilter
working-directory: integrations/cloud_filter
run: cargo clippy --all-targets --all-features --workspace -- -D warnings
5 changes: 3 additions & 2 deletions .github/workflows/release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ jobs:
- "integrations/dav-server"
- "integrations/fuse3"
- "integrations/unftp-sbe"
- "integrations/cloud_filter"
- "bin/oay" # depends on integrations/dav-server
- "bin/oli"
- "bin/ofs" # depends on integrations/fuse3
- "bin/ofs" # depends on integrations/{fuse3,cloud_filter}
steps:
- uses: actions/checkout@v4
- name: Checkout python env
Expand Down Expand Up @@ -79,7 +80,7 @@ jobs:
working-directory: ${{ matrix.package }}
# Only publish if it's a tag and the tag is not a pre-release
if: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-') }}
run: cargo publish
run: cargo publish --no-verify
env:
LD_LIBRARY_PATH: ${{ env.JAVA_HOME }}/lib/server:${{ env.LD_LIBRARY_PATH }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
# specific language governing permissions and limitations
# under the License.

name: Behavior Test Integration CloudFilter
name: Behavior Test Integration Cloud Filter

on:
push:
paths:
- "integrations/cloudfilter/**.rs"
- "integrations/cloudfilter/Cargo.toml"
- ".github/workflows/test_behavior_integration_cloudfilter.yml"
- ".github/workflows/test_behavior_integration_cloud_filter.yml"
pull_request:
paths:
- "integrations/cloudfilter/**.rs"
- "integrations/cloudfilter/Cargo.toml"
- ".github/workflows/test_behavior_integration_cloudfilter.yml"
- ".github/workflows/test_behavior_integration_cloud_filter.yml"

jobs:
test:
Expand All @@ -39,11 +39,11 @@ jobs:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: ./.github/actions/setup

- name: Test Integration CloudFilter
working-directory: integrations/cloudfilter
working-directory: integrations/cloud_filter
run: cargo test --test behavior
env:
OPENDAL_TEST: fs
OPENDAL_FS_ROOT: ../../fixtures/data
OPENDAL_DISABLE_RANDOM_ROOT: 'true'
OPENDAL_DISABLE_RANDOM_ROOT: "true"
Loading
Loading