From 660d3dfc1577d2141061d875a96237788fa0cdd0 Mon Sep 17 00:00:00 2001 From: owl Date: Sun, 25 Jun 2023 01:22:17 +0800 Subject: [PATCH] feat(services/redb): add redb workflow Signed-off-by: owl --- .github/workflows/service_test_redb.yml | 56 +++++++++++++++++++++++++ core/src/services/mod.rs | 2 +- 2 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/service_test_redb.yml diff --git a/.github/workflows/service_test_redb.yml b/.github/workflows/service_test_redb.yml new file mode 100644 index 000000000000..315cf745338f --- /dev/null +++ b/.github/workflows/service_test_redb.yml @@ -0,0 +1,56 @@ +# 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: Service Test Redb + +on: + push: + branches: + - main + pull_request: + branches: + - main + paths: + - "core/src/**" + - "core/tests/**" + - "!core/src/docs/**" + - "!core/src/services/**" + - "core/src/services/redb/**" + - ".github/workflows/redb.yml" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + +jobs: + sled: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup Rust toolchain + uses: ./.github/actions/setup + - name: Test + shell: bash + working-directory: core + run: cargo test redb --features services-redb -j=1 + env: + RUST_BACKTRACE: full + RUST_LOG: debug + OPENDAL_REDB_TEST: on + OPENDAL_REDB_ROOT: / + OPENDAL_REDB_DATADIR: /tmp/opendal/redb/ + OPENDAL_REDB_TABLE: redb-table diff --git a/core/src/services/mod.rs b/core/src/services/mod.rs index ecf8e764c6d2..9aa631beda38 100644 --- a/core/src/services/mod.rs +++ b/core/src/services/mod.rs @@ -172,4 +172,4 @@ pub use vercel_artifacts::VercelArtifacts; #[cfg(feature = "services-redb")] mod redb; #[cfg(feature = "services-redb")] -pub use self::redb::Redb; \ No newline at end of file +pub use self::redb::Redb;