Upgrade to syn v2.0 (#22) #128
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
name: rustdoc to gh-pages | |
on: | |
push: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
release: | |
name: GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install CUDA | |
uses: Jimver/cuda-toolkit@v0.2.14 | |
with: | |
method: network | |
use-github-cache: false | |
use-local-cache: false | |
- name: Checkout the Repository | |
uses: actions/checkout@v2 | |
- name: Install the Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
override: false # FIXME | |
- name: Build the Documentation | |
run: | | |
RUSTDOCFLAGS="\ | |
--enable-index-page \ | |
--extern-html-root-url const_type_layout=https://docs.rs/const-type-layout/0.3.2/ \ | |
--extern-html-root-url final=https://docs.rs/final/0.1.1/ \ | |
--extern-html-root-url rustacuda=https://docs.rs/rustacuda/0.1.3/ \ | |
--extern-html-root-url rustacuda_core=https://docs.rs/rustacuda_core/0.1.2/ \ | |
--extern-html-root-url rustacuda_derive=https://docs.rs/rustacuda_derive/0.1.2/ \ | |
-Zunstable-options \ | |
" cargo doc \ | |
--all-features \ | |
--no-deps | |
- name: Deploy the Documentation | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./target/doc |