Convert libnvme to 'struct nvmf_context' as function argument #264
Workflow file for this run
This file contains hidden or 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
| --- | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # | |
| # This file is part of nvme. | |
| # Copyright (c) 2026 SUSE LLC | |
| # | |
| # Authors: Daniel Wagner <[email protected]> | |
| name: Build documentation | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - Documentation/** | |
| - libnvme/doc/** | |
| pull_request: | |
| branches: [master] | |
| paths: | |
| - Documentation/** | |
| - libnvme/doc/** | |
| workflow_dispatch: | |
| jobs: | |
| build-docs: | |
| name: build documentation | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/linux-nvme/debian:latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Mark repo as safe for git | |
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - name: build | |
| run: | | |
| scripts/build.sh docs |