feat(core/services-azblob): support user defined metadata #7889
Workflow file for this run
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
# 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: Docs | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "core/**" | |
- "bindings/**" | |
- "integrations/**" | |
- "website/**" | |
- ".github/workflows/docs.yml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
env: | |
# This same toolchain for rust 1.79.0 but nightly so we can use new features. | |
RUST_DOC_TOOLCHAIN: nightly-2024-06-13 | |
# Enable cfg docsrs to make sure docs are built. | |
RUSTDOCFLAGS: "--cfg docsrs" | |
jobs: | |
build-rust-doc: | |
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: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: "17" | |
- name: Build OpenDAL doc | |
working-directory: core | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
env: | |
LD_LIBRARY_PATH: ${{ env.JAVA_HOME }}/lib/server:${{ env.LD_LIBRARY_PATH }} | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: rust-docs | |
path: ./core/target/doc | |
build-java-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: "17" | |
- name: Build and test | |
working-directory: bindings/java | |
run: mvn javadoc:javadoc | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: java-docs | |
path: ./bindings/java/target/site/apidocs | |
build-nodejs-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: pnpm | |
cache-dependency-path: "bindings/nodejs/pnpm-lock.yaml" | |
- name: Corepack | |
working-directory: bindings/nodejs | |
run: corepack enable | |
- name: Install dependencies | |
working-directory: bindings/nodejs | |
run: pnpm install --frozen-lockfile | |
- name: Build docs theme | |
working-directory: bindings/nodejs | |
run: pnpm run build:theme | |
- name: Build bindings/nodejs Docs | |
working-directory: bindings/nodejs | |
run: pnpm run docs | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nodejs-docs | |
path: ./bindings/nodejs/docs | |
build-python-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Build and install dependencies | |
working-directory: bindings/python | |
run: | | |
python -m pip install -e .[docs] | |
- name: Build Docs | |
working-directory: bindings/python | |
run: pdoc -t ./template --output-dir ./docs opendal | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: python-docs | |
path: ./bindings/python/docs | |
build-c-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup doxygen | |
run: sudo apt-get install doxygen | |
- name: Build Docs | |
working-directory: bindings/c | |
run: make doc | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: C-docs | |
path: ./bindings/c/docs/doxygen/html | |
build-lua-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup lua-ldoc | |
run: sudo apt-get install lua-ldoc | |
- name: Build Docs | |
working-directory: "bindings/lua" | |
run: ldoc ./src | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: lua-docs | |
path: ./bindings/lua/doc/ | |
build-haskell-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Haskell toolchain (ghc-9.2.8) | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh | |
ghcup install ghc 9.2.8 --set | |
ghcup install cabal --set | |
cabal update | |
- name: Setup cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-cabal | |
with: | |
path: ~/.cabal | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Build Docs | |
working-directory: "bindings/haskell" | |
run: | | |
cabal haddock --haddock-html --haddock-quickjump --haddock-hyperlink-source -j | |
find dist-newstyle -path '**/build/**/doc' -exec cp -r {}/html/opendal/ doc \; | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: haskell-docs | |
path: ./bindings/haskell/doc/ | |
build-cpp-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get install doxygen graphviz ninja-build | |
- name: Build Cpp docs | |
working-directory: "bindings/cpp" | |
run: | | |
mkdir build | |
cd build | |
cmake -GNinja -DOPENDAL_DOCS_ONLY=ON .. | |
ninja docs | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cpp-docs | |
path: ./bindings/cpp/build/docs_doxygen/html | |
build-ocaml-doc: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache OPAM dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.opam | |
key: ${{ runner.os }}-opam-doc-${{ hashFiles('bindings/ocaml/dune-project') }} | |
restore-keys: | | |
${{ runner.os }}-opam-doc- | |
${{ runner.os }}-opam- | |
- name: Cache Dune build artifacts | |
uses: actions/cache@v4 | |
with: | |
path: bindings/ocaml/_build | |
key: ${{ runner.os }}-dune-doc-${{ hashFiles('bindings/ocaml/**/*.{ml,mli,opam}') }} | |
restore-keys: | | |
${{ runner.os }}-dune-doc- | |
${{ runner.os }}-dune- | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup OCaml toolchain | |
uses: ./.github/actions/setup-ocaml | |
- name: Build OCaml docs | |
working-directory: "bindings/ocaml" | |
run: | | |
opam install -y dune odoc | |
eval $(opam env) | |
dune build @doc | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ocaml-docs | |
path: ./bindings/ocaml/_build/default/_doc/_html | |
build-object-store-opendal-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build object-store-opendal doc | |
working-directory: "integrations/object_store" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: object-store-opendal-docs | |
path: ./integrations/object_store/target/doc | |
build-dav-server-opendalfs-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
# Revert to nightly after https://github.com/apache/opendal/issues/4161 addressed | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build dav-server-opendalfs doc | |
working-directory: "integrations/dav-server" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dav-server-opendalfs-docs | |
path: ./integrations/dav-server/target/doc | |
build-fuse3-opendal-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build fuse3-opendal doc | |
working-directory: "integrations/fuse3" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: fuse3-opendal-docs | |
path: ./integrations/fuse3/target/doc | |
build-unftp-sbe-opendal-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build unftp-sbe-opendal doc | |
working-directory: "integrations/unftp-sbe" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: unftp-sbe-opendal-docs | |
path: ./integrations/unftp-sbe/target/doc | |
build-virtiofs-opendal-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build virtiofs-opendal doc | |
working-directory: "integrations/virtiofs" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: virtiofs-opendal-docs | |
path: ./integrations/virtiofs/target/doc | |
build-parquet-opendal-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build parquet-opendal doc | |
working-directory: "integrations/parquet" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: object-parquet-docs | |
path: ./integrations/parquet/target/doc | |
build-opendal-compat-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup | |
- name: Setup Rust Nightly | |
run: | | |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }} | |
- name: Build opendal_compat doc | |
working-directory: "integrations/compat" | |
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features | |
- name: Upload docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: opendal-compat-docs | |
path: ./integrations/compat/target/doc | |
build-website: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
needs: | |
- build-rust-doc | |
- build-java-doc | |
- build-nodejs-doc | |
- build-python-doc | |
- build-c-doc | |
- build-lua-doc | |
- build-haskell-doc | |
- build-cpp-doc | |
- build-ocaml-doc | |
- build-object-store-opendal-doc | |
- build-dav-server-opendalfs-doc | |
- build-fuse3-opendal-doc | |
- build-unftp-sbe-opendal-doc | |
- build-virtiofs-opendal-doc | |
- build-parquet-opendal-doc | |
- build-opendal-compat-doc | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: pnpm | |
cache-dependency-path: "website/pnpm-lock.yaml" | |
- name: Corepack | |
working-directory: website | |
run: corepack enable | |
- name: Download rust docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: rust-docs | |
path: ./website/static/docs/rust | |
- name: Download nodejs docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: nodejs-docs | |
path: ./website/static/docs/nodejs | |
- name: Download python docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: python-docs | |
path: ./website/static/docs/python | |
- name: Download java docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: java-docs | |
path: ./website/static/docs/java | |
- name: Download C docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: C-docs | |
path: ./website/static/docs/c | |
- name: Download lua docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: lua-docs | |
path: ./website/static/docs/lua | |
- name: Download haskell docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: haskell-docs | |
path: ./website/static/docs/haskell | |
- name: Download cpp docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: cpp-docs | |
path: ./website/static/docs/cpp | |
- name: Download ocaml docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: ocaml-docs | |
path: ./website/static/docs/ocaml | |
- name: Download object-store-opendal docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: object-store-opendal-docs | |
path: ./website/static/docs/object-store-opendal | |
- name: Download opendal_compat docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: opendal-compat-docs | |
path: ./website/static/docs/opendal_compat | |
- name: Download dav-server-opendalfs docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: dav-server-opendalfs-docs | |
path: ./website/static/docs/dav-server-opendalfs | |
- name: Download fuse3-opendal docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: fuse3-opendal-docs | |
path: ./website/static/docs/fuse3-opendal | |
- name: Download unftp-sbe-opendal docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: unftp-sbe-opendal-docs | |
path: ./website/static/docs/unftp-sbe-opendal | |
- name: Download virtiofs-opendal docs | |
uses: actions/download-artifact@v3 | |
with: | |
name: virtiofs-opendal-docs | |
path: ./website/static/docs/virtiofs-opendal | |
- name: Install Dependencies | |
working-directory: website | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
working-directory: website | |
run: pnpm build | |
- name: Copy asf file | |
run: cp .asf.yaml ./website/build/.asf.yaml | |
- name: Deploy to gh-pages | |
uses: peaceiris/[email protected] | |
if: ${{ (github.event_name == 'push' && github.ref_name == 'main') || (startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'rc')) }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: website/build | |
publish_branch: gh-pages | |
- name: Clear build | |
run: rm -rf ./website/build | |
- name: Build for staging version | |
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'rc') }} | |
working-directory: website | |
run: pnpm build | |
env: | |
OPENDAL_WEBSITE_STAGING: true | |
- name: Copy asf file | |
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'rc') }} | |
run: cp .asf.yaml ./website/build/.asf.yaml | |
- name: Prepare staged name | |
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'rc') }} | |
run: | | |
export OPENDAL_WEBSITE_STAGED_NAME=$(echo ${{ github.ref_name }} | sed 's/[._]/-/g') | |
echo OPENDAL_WEBSITE_STAGED_NAME=${OPENDAL_WEBSITE_STAGED_NAME} | |
echo OPENDAL_WEBSITE_STAGED_NAME=${OPENDAL_WEBSITE_STAGED_NAME} >> $GITHUB_ENV | |
- name: Deploy to staged | |
uses: peaceiris/[email protected] | |
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'rc') }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: website/build | |
publish_branch: site/${{ env.OPENDAL_WEBSITE_STAGED_NAME }}-staging | |
- name: Clear build | |
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'rc') }} | |
run: rm -rf ./website/build | |
- name: Build for nightlies with tagged version | |
working-directory: website | |
run: pnpm build | |
env: | |
# Keep this same with the remote_path below | |
OPENDAL_WEBSITE_BASE_URL: /opendal/opendal-docs-release-${{ github.ref_name }}/ | |
OPENDAL_WEBSITE_NOT_LATEST: true | |
- name: Deploy to nightlies for tagged version | |
uses: burnett01/[email protected] | |
if: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'rc') }} | |
with: | |
switches: -avzr | |
path: website/build/ | |
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/opendal/opendal-docs-release-${{ github.ref_name }}/ | |
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }} | |
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }} | |
remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }} | |
remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }} | |
- name: Clear build | |
run: rm -rf ./website/build | |
- name: Build for nightlies with stable version | |
working-directory: website | |
run: pnpm build | |
env: | |
OPENDAL_WEBSITE_BASE_URL: /opendal/opendal-docs-stable/ | |
- name: Deploy to nightlies for stable version | |
uses: burnett01/[email protected] | |
if: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'rc') }} | |
with: | |
switches: -avzr --delete | |
path: website/build/ | |
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/opendal/opendal-docs-stable/ | |
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }} | |
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }} | |
remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }} | |
remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }} |