-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (39 loc) · 1.31 KB
/
rustdoc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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: Checkout the Repository
uses: actions/checkout@v2
- name: Install OpenMPI
run: |
sudo apt-get update -q
sudo apt-get install libopenmpi-dev -y --no-install-recommends
- name: Install the Rust toolchain
run: cargo install ptx-linker --git https://github.com/juntyr/rust-ptx-linker --force --locked
- name: Build the Documentation
run: |
RUSTDOCFLAGS="\
--enable-index-page \
--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 \
--workspace \
--all-features \
--no-deps
- name: Deploy the Documentation
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.RUSTDOC_DEPLOY_KEY }}
external_repository: juntyr/necsim-rust-docs
publish_branch: gh-pages
publish_dir: ./target/doc