Skip to content

Commit

Permalink
Merge branch 'master' into merge-back-to-master
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmr1993 committed Dec 4, 2023
2 parents bde1c05 + da58501 commit 862d172
Show file tree
Hide file tree
Showing 96 changed files with 4,784 additions and 867 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/gh-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ name: Deploy Specifications & Docs to GitHub Pages
on:
push:
branches:
- master
- "*"

env:
OCAML_VERSION: "4.14.0"
RUST_TOOLCHAIN_VERSION: "nightly"
# 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:
Expand Down Expand Up @@ -39,10 +41,11 @@ jobs:
# 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 +nightly doc --all --no-deps
RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo doc --all --no-deps
- name: Build the mdbook
run: |
Expand All @@ -57,6 +60,7 @@ jobs:
- 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
35 changes: 0 additions & 35 deletions .github/workflows/stale.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,11 @@ _build
tools/srs

.ignore
optimism/*op-program-data-log.sh
optimism/cpu.pprof
optimism/meta.json
optimism/out.json
optimism/op-program-db*
optimism/state.json
meta.json
state.json
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "optimism/ethereum-optimism"]
path = optimism/ethereum-optimism
url = https://github.com/ethereum-optimism/optimism.git
Loading

0 comments on commit 862d172

Please sign in to comment.