2020-04-12 07:13:28 +00:00
|
|
|
name: Deploy Docs to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
doc:
|
|
|
|
name: Documentation on Github Pages
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Cargo cache
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cargo
|
|
|
|
key: cargo-stable
|
|
|
|
|
|
|
|
- name: Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-07-14 18:29:49 +00:00
|
|
|
toolchain: nightly
|
2020-04-12 07:13:28 +00:00
|
|
|
override: true
|
|
|
|
|
2020-04-13 15:59:13 +00:00
|
|
|
- name: System dependencies
|
2020-07-14 18:54:57 +00:00
|
|
|
run: sudo apt-get update; sudo apt-get install libudev-dev libgbm-dev libxkbcommon-dev libegl1-mesa-dev libwayland-dev libinput-dev libsystemd-dev libdbus-1-dev
|
2020-04-13 15:59:13 +00:00
|
|
|
|
2020-04-12 07:13:28 +00:00
|
|
|
- name: Build Documentation
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: doc
|
2021-06-11 15:46:32 +00:00
|
|
|
args: --no-deps --features "test_all_features" -p smithay -p calloop:0.8.0 -p dbus -p drm -p gbm -p input -p nix:0.20.0 -p udev -p slog -p wayland-server -p wayland-commons -p wayland-protocols -p winit
|
2020-04-12 07:13:28 +00:00
|
|
|
|
|
|
|
- name: Setup index
|
2020-04-19 21:26:54 +00:00
|
|
|
run: cp ./doc_index.html ./target/doc/index.html
|
2020-04-12 07:13:28 +00:00
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2020-04-19 21:26:54 +00:00
|
|
|
publish_dir: ./target/doc
|