Merge pull request #1719 from o1-labs/mips/keccak/proof-test #641
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: Deploy Specifications & Docs to GitHub Pages | |
on: | |
push: | |
branches: | |
- "*" | |
env: | |
OCAML_VERSION: "4.14.0" | |
# This version has been chosen randomly. It seems that with 2023-11-16, it is | |
# broken. The compiler crashes. Feel free to pick any newer working version. | |
RUST_TOOLCHAIN_VERSION: "nightly-2023-10-10" | |
jobs: | |
release: | |
name: GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
# as action-rs does not seem to be maintained anymore, building from | |
# scratch the environment using rustup | |
- name: Setup nightly Rust toolchain | |
run: | |
| | |
curl --proto '=https' --tlsv1.2 -sSf -o rustup-init \ | |
https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init | |
chmod +x ./rustup-init | |
./rustup-init -y --default-toolchain "$RUST_TOOLCHAIN_VERSION" --profile default | |
rm ./rustup-init | |
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
# overwriting default rust-toolchain | |
echo $RUST_TOOLCHAIN_VERSION > rust-toolchain | |
- name: Setup OCaml ${{ env.OCAML_VERSION }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ env.OCAML_VERSION }} | |
# https://github.com/ocaml/setup-ocaml/issues/211#issuecomment-1058882386 | |
# disable-cache: true | |
# This must be the same as in the section "Generate rustdoc locally" in the README.md | |
- name: Build Rust Documentation | |
run: | | |
eval $(opam env) | |
RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo doc --all --no-deps | |
- name: Build the mdbook | |
run: | | |
eval $(opam env) | |
cd book | |
make deps | |
make build | |
- name: Arrange website folder hierarchy | |
run: | | |
mv ./target/doc ./book/book/html/rustdoc | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/master' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./book/book/html |