Skip to content

Commit

Permalink
chore: Bump OpenDAL to 0.50.0 (#5110)
Browse files Browse the repository at this point in the history
* chore: Bump OpenDAL to 0.50.0

Signed-off-by: Xuanwo <[email protected]>

* rename to cloud filter

Signed-off-by: Xuanwo <[email protected]>

* fix cloudfilter ci

Signed-off-by: Xuanwo <[email protected]>

* Fix python test

Signed-off-by: Xuanwo <[email protected]>

---------

Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo authored Sep 11, 2024
1 parent 3ad16fe commit fa11f9d
Show file tree
Hide file tree
Showing 163 changed files with 2,102 additions and 2,208 deletions.
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

0 comments on commit fa11f9d

Please sign in to comment.