mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-06 17:53:23 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.0 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](1af3b93b68...9c091bb21b)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: Doxygen
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
upload_doxygen:
|
|
type: boolean
|
|
default: false
|
|
qt_version:
|
|
type: string
|
|
required: true
|
|
|
|
jobs:
|
|
build_doxygen:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Qt docs
|
|
uses: jurplel/install-qt-action@48d3ad6db93f3627c8ee7a0454bc6f3744f7e730
|
|
with:
|
|
version: ${{ inputs.qt_version }}
|
|
no-qt-binaries: true
|
|
documentation: true
|
|
cache: true
|
|
- name: Run doxygen
|
|
working-directory: docs
|
|
run: |
|
|
sudo apt-get -y install doxygen graphviz
|
|
doxygen Doxyfile
|
|
env:
|
|
DOXY_SRC_ROOT: ..
|
|
DOXY_TAGFILES: ${{ runner.workspace }}/Qt/Docs/Qt-${{ inputs.qt_version }}
|
|
|
|
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
|
|
if: inputs.upload_doxygen
|
|
with:
|
|
name: doxygen
|
|
path: docs/html/
|
|
retention-days: 1
|