Skip to content

Commit

Permalink
feat(services/redb): add redb workflow
Browse files Browse the repository at this point in the history
Signed-off-by: owl <[email protected]>
  • Loading branch information
oowl committed Jun 24, 2023
1 parent 6d127b4 commit 660d3df
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
56 changes: 56 additions & 0 deletions .github/workflows/service_test_redb.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion core/src/services/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@ pub use vercel_artifacts::VercelArtifacts;
#[cfg(feature = "services-redb")]
mod redb;
#[cfg(feature = "services-redb")]
pub use self::redb::Redb;
pub use self::redb::Redb;

0 comments on commit 660d3df

Please sign in to comment.