esp-hal/.github/workflows/documentation.yml
Scott Mabin 6b758d75b8
Finalize releases (#3805)
* Finalize crate releases

* changelog fixup

* fixup docsrs ci test

* docs fixup
2025-07-16 10:29:34 +00:00

192 lines
7.0 KiB
YAML

name: Documentation
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
inputs:
packages:
description: >
A JSON structure describing the packages to build.
E.g: [{"name":"esp-hal","tag":"v0.23.1"},{"name":"esp-wifi","tag":"esp-wifi-v0.12"}]
NOTE: You can run `cargo xtask release tag-releases` to get the json output generated for this workflow.
If you want to build all packages, leave this field empty.
required: false
server:
type: choice
description: Which server to deploy to
options:
- preview
- production
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
setup:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'release-pr')) }}
steps:
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
# Build the `xtask` package using the latest commit, and copy the
# resulting binary to the `~/.cargo/bin/` directory. We do this to
# avoid having to rebuild different versions of the package for
# different tags if they do not fall on the same commit, and to
# make sure that we take advantage of any subsequent updates to
# the xtask which may have happened after a release was tagged.
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: esp-rs/esp-hal
- name: Build xtask
run: |
cargo build --package=xtask --features=deploy-docs
cp target/debug/xtask ~/.cargo/bin/hal-xtask
- name: Cache xtask for all jobs
uses: actions/upload-artifact@v4
with:
name: xtask
path: target/debug/xtask
- id: setup_manual
name: Set up [manual run with specific packages]
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.packages != '' }}
run: |
input='${{ github.event.inputs.packages }}'
echo "packages=${input}" >> "$GITHUB_OUTPUT"
- id: setup_pr
name: Set up [pull request or all packages]
if: ${{ github.event_name == 'pull_request' || github.event.inputs.packages == '' }}
# Release PRs will ignore the tag values and just check out the latest commit
run: |
output=$(hal-xtask release tag-releases)
echo "packages=${output}" >> "$GITHUB_OUTPUT"
outputs:
packages: "${{ steps.setup_manual.outputs.packages || steps.setup_pr.outputs.packages }}"
build:
needs: setup
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'release-pr')) }}
strategy:
fail-fast: true
matrix:
packages: ${{ fromJson(needs.setup.outputs.packages) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: esp-rs/xtensa-toolchain@v1.6
with:
default: true
version: 1.88.0.0
# xtensa-toolchain installs rustup and a basic toolchain, but doesn't install rust-src
- name: rust-src
run: rustup component add rust-src --toolchain nightly
# Checkout the tag we need to start building the docs
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ github.event_name == 'workflow_dispatch' }}
with:
repository: esp-rs/esp-hal
ref: ${{ matrix.packages.tag }}
# If running a release PR, we want to build docs for the latest commit on the released branch.
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ github.event_name != 'workflow_dispatch' }}
with:
repository: esp-rs/esp-hal
- name: Download xtask
uses: actions/download-artifact@v4
with:
name: xtask
path: ~/.cargo/bin/
- name: Build documentation
run: |
chmod +x ~/.cargo/bin/xtask
~/.cargo/bin/xtask build documentation --packages=${{ matrix.packages.name }} --base-url ${{ fromJSON('["https://preview-docs.espressif.com/projects/rust/", "https://docs.espressif.com/projects/rust/"]')[github.event.inputs.server == 'production'] }}
# https://github.com/actions/deploy-pages/issues/303#issuecomment-1951207879
- name: Remove problematic '.lock' files
run: find docs -name ".lock" -exec rm -f {} \;
- name: Upload docs for ${{ matrix.packages.name }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.packages.name }}
path: "docs/${{ matrix.packages.name }}"
assemble:
needs: [setup, build]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'release-pr')) }}
steps:
# Check out the sources, the xtask reads package versions from the Cargo.toml files
- uses: actions/checkout@v4
- name: Download all docs and xtask
uses: actions/download-artifact@v4
with:
path: "docs/"
# Create an index for _all_ packages. Per-package workflows don't upload the landing page.
- name: Create index.html
run: |
chmod +x docs/xtask/xtask
docs/xtask/xtask build documentation-index
rm -rf docs/xtask
- if: ${{ github.event.inputs.server == 'preview' || github.event_name == 'pull_request' }}
name: Deploy to preview server
uses: appleboy/scp-action@v0.1.7
with:
host: preview-docs.espressif.com
username: ${{ secrets.PREVIEW_USERNAME }}
key: ${{ secrets.PREVIEW_KEY }}
target: ${{ secrets.PREVIEW_TARGET }}
source: "docs/"
strip_components: 1 # remove the docs prefix
overwrite: true
# Deploying to production server is only allowed for manual runs
- if: ${{ github.event.inputs.server == 'production' && github.event_name == 'workflow_dispatch' }}
name: Deploy to production server
uses: appleboy/scp-action@v0.1.7
with:
host: docs.espressif.com
username: ${{ secrets.PRODUCTION_USERNAME }}
key: ${{ secrets.PRODUCTION_KEY }}
target: ${{ secrets.PRODUCTION_TARGET }}
source: "docs/"
strip_components: 1 # remove the docs prefix
overwrite: true
docsrs:
runs-on: ubuntu-latest
if: ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'release-pr')) }}
steps:
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
targets: riscv32imac-unknown-none-elf
- uses: actions/checkout@v4
with:
repository: esp-rs/esp-hal
- name: Install cargo-docs-rs
run: cargo install cargo-docs-rs --locked
- name: Run cargo-docs-rs
run: cd esp-hal && cargo docs-rs