chore: bump toolchain to lean v4.26.0-rc2 and update to latest verso #1557
Workflow file for this run
This file contains hidden or 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: build and test book content | |
| # Controls when the action will run. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| # interferes with lean4-nightly authentication | |
| persist-credentials: false | |
| submodules: true | |
| - name: Setup elan toolchain on this build | |
| run: | | |
| curl -O --location https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh | |
| chmod u+x elan-init.sh | |
| ./elan-init.sh -y --default-toolchain none | |
| - name: Set elan paths | |
| run: | | |
| echo "$HOME/.elan/bin" >> $GITHUB_PATH | |
| - name: Install lean toolchain for examples | |
| run: | | |
| cd examples | |
| lean --version | |
| - name: Install lean toolchain for text | |
| run: | | |
| cd book | |
| lean --version | |
| - name: Cache book/.lake | |
| uses: actions/cache@v4 | |
| with: | |
| path: book/.lake | |
| # The SHA is in the key to get the most recent cache possible, rather than just saving a single one for each Lean/deps version and not touching it. | |
| key: ${{ runner.os }}-${{ hashFiles('book/lake-manifest.json') }}-${{ hashFiles('book/lean-toolchain') }}-${{ steps.shortSHA.outputs.short_sha }} | |
| # Try to restore cache for same OS/Lean/deps, but don't get less specific, because Lake isn't always happy to get build product version mismatches | |
| restore-keys: | | |
| ${{ runner.os }}-${{ hashFiles('book/lake-manifest.json') }}-${{ hashFiles('book/lean-toolchain') }}- | |
| - name: Build book | |
| run: | | |
| pushd book | |
| lake exe tpil --verbose | |
| popd | |
| - name: Save book/.lake | |
| uses: actions/cache/save@v4 | |
| with: | |
| path: book/.lake | |
| # The SHA is in the key to get the most recent cache possible, rather than just saving a single one for each Lean/deps version and not touching it. | |
| key: ${{ runner.os }}-${{ hashFiles('book/lake-manifest.json') }}-${{ hashFiles('book/lean-toolchain') }}-${{ steps.shortSHA.outputs.short_sha }} | |
| - name: Deploy to Netlify hosting | |
| uses: nwtgck/actions-netlify@v2.0 | |
| with: | |
| publish-dir: book/_out/html-multi | |
| production-branch: master | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| deploy-message: | | |
| ${{ github.event_name == 'pull_request' && format('pr#{0}: {1}', github.event.number, github.event.pull_request.title) || format('ref/{0}: {1}', github.ref_name, steps.deploy-info.outputs.message) }} | |
| alias: ${{ steps.deploy-info.outputs.alias }} | |
| enable-commit-comment: false | |
| enable-pull-request-comment: false | |
| github-deployment-environment: "lean-lang.org/theorem_proving_in_lean4" | |
| fails-without-credentials: true | |
| env: | |
| NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
| NETLIFY_SITE_ID: "51300c89-2f6c-4bba-a575-8cf12e434502" | |
| - name: GH pages deploy | |
| uses: JamesIves/github-pages-deploy-action@4.1.5 | |
| with: | |
| branch: gh-pages | |
| folder: book/_out/html-multi | |