Skip to content

Put import juliacall at the beginning of `python/omjlcomps/__init__… #53

Put import juliacall at the beginning of `python/omjlcomps/__init__…

Put import juliacall at the beginning of `python/omjlcomps/__init__… #53

Workflow file for this run

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 and DanielIngrahamRegistry
shell: julia --color=yes {0}
run: |
using Pkg
Pkg.Registry.add(RegistrySpec(url="https://github.com/JuliaRegistries/General"))
Pkg.Registry.add(RegistrySpec(url="https://github.com/dingraha/DanielIngrahamRegistry"))
env:
JULIA_PKG_USE_CLI_GIT: 'true'
- name: Hack OpenMDAO.jl's CondaPkg.toml to allow local version of omjlcomps
run: |
sed --in-place -e '/^omjlcomps/s/=.*$/= ""/' ./julia/OpenMDAO.jl/CondaPkg.toml
cat ./julia/OpenMDAO.jl/CondaPkg.toml
- name: Install dependencies
shell: julia --project=docs/ --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path="./julia/OpenMDAOCore.jl"))
Pkg.develop(PackageSpec(path="./julia/OpenMDAO.jl"))
Pkg.instantiate()
using CondaPkg
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