This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch setup-b2-test in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 98b5aa1e28398563342666797e4875d0870728fd Author: Xuanwo <[email protected]> AuthorDate: Wed Dec 6 14:04:35 2023 +0800 ci: Add behavior test for b2 Signed-off-by: Xuanwo <[email protected]> --- .github/services/b2/b2/action.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/services/b2/b2/action.yml b/.github/services/b2/b2/action.yml new file mode 100644 index 000000000..9d3bd434e --- /dev/null +++ b/.github/services/b2/b2/action.yml @@ -0,0 +1,32 @@ +# 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: b2 +description: 'Behavior test for B2' + +runs: + using: "composite" + steps: + - name: Setup + uses: 1password/load-secrets-action@v1 + with: + export-env: true + env: + OPENDAL_B2_BUCKET: op://services/b2/bucket + OPENDAL_B2_BUCKET_ID: op://services/b2/bucket_id + OPENDAL_B2_APPLICATION_KEY_ID: op://services/b2/application_key_id + OPENDAL_B2_APPLICATION_KEY: op://services/b2/application_key
