Add explicit AD components, powered by DifferentationInterface.jl and friends #72
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - master # update to match your development branch (master, main, dev, trunk, ...) | |
| tags: '*' | |
| pull_request: | |
| jobs: | |
| build: | |
| permissions: | |
| contents: write | |
| statuses: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: julia-actions/setup-julia@v1 | |
| with: | |
| version: '1' | |
| - name: Add General Registry | |
| shell: julia --color=yes {0} | |
| run: | | |
| using Pkg | |
| Pkg.Registry.add(RegistrySpec(url="https://github.com/JuliaRegistries/General")) | |
| env: | |
| JULIA_PKG_USE_CLI_GIT: 'true' | |
| - name: Install dependencies | |
| shell: julia --project=docs/ --color=yes {0} | |
| run: | | |
| using Pkg | |
| Pkg.status() | |
| Pkg.develop(PackageSpec(path="./julia/OpenMDAOCore.jl")) | |
| Pkg.status() | |
| Pkg.develop(PackageSpec(path="./julia/OpenMDAO.jl")) | |
| Pkg.status() | |
| Pkg.instantiate() | |
| Pkg.status() | |
| using CondaPkg | |
| # This path in the version argument is relative to the location of the CondaPkg.toml file (aka OpenMDAO.jl/docs), not the working directory. | |
| CondaPkg.add_pip("omjlcomps"; version="@./../python") | |
| Pkg.update() | |
| - name: Build and deploy | |
| env: | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key | |
| run: julia --project=docs/ docs/make.jl | |