-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ovfs): Split ovfs impl into virtiofs_opendal (#4723)
* add virtiofs integrations * remove virtiofs bin * modify ci
- Loading branch information
Showing
11 changed files
with
66 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# 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: Integration Virtiofs CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "integrations/virtiofs/**" | ||
- "core/**" | ||
- ".github/workflows/ci_integration_virtiofs.yml" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
check_clippy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Rust toolchain | ||
uses: ./.github/actions/setup | ||
with: | ||
need-rocksdb: true | ||
need-protoc: true | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Cargo clippy | ||
working-directory: integrations/virtiofs | ||
run: cargo clippy --all-targets --all-features -- -D warnings |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Cargo.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,16 @@ | |
# under the License. | ||
|
||
[package] | ||
name = "ovfs" | ||
version = "0.1.0" | ||
description = "virtiofs integration for Apache OpenDAL" | ||
name = "virtiofs_opendal" | ||
|
||
authors = ["Apache OpenDAL <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://opendal.apache.org/" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/apache/opendal" | ||
rust-version = "1.75" | ||
version = "0.1.0" | ||
|
||
[dependencies] | ||
snafu = "0.8.3" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,4 @@ | |
|
||
mod error; | ||
mod virtiofs; | ||
mod virtiofs_utils; | ||
|
||
fn main() { | ||
unimplemented!() | ||
} | ||
mod virtiofs_util; |
File renamed without changes.
File renamed without changes.