CompatHelper: bump compat for Enzyme_jll to 0.0.215, (keep existing c… #1571
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 deploy documentation to Scripts | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # - release-* | |
| # tags: '*' | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1.11' | |
| - uses: julia-actions/cache@v2 | |
| - run: | | |
| julia --color=yes --project=docs -e ' | |
| using Pkg | |
| Pkg.develop([PackageSpec(path="lib/EnzymeCore"), PackageSpec(path=pwd()), PackageSpec(path="lib/EnzymeTestUtils")]) | |
| Pkg.instantiate()' | |
| env: | |
| JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager | |
| - run: | | |
| julia --color=yes --project=docs -e ' | |
| using Documenter: DocMeta, doctest | |
| using Enzyme | |
| DocMeta.setdocmeta!(Enzyme, :DocTestSetup, :(using Enzyme); recursive=true) | |
| doctest(Enzyme)' | |
| - run: julia --project=docs docs/make.jl |