Add hybrid plugin system notebook #188
Workflow file for this run
This file contains 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
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright 2023 The Foundry Visionmongers Ltd | |
name: Examples | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-notebooks: | |
name: "Test Notebooks ${{ matrix.os }} python-${{ matrix.python }}" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["windows-2022", "ubuntu-22.04", "macos-13"] | |
python: ["3.10", "3.11"] | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install . | |
python -m pip install -r examples/resources/requirements.txt | |
- name: Test Notebooks | |
# Execute all the notebooks apart from the Hybrid Plugin System, | |
# which requires a build of SimpleCppManager | |
run: > | |
find examples -maxdepth 1 -name "*.ipynb" | |
! -name "hybrid_plugin_system.ipynb" | |
-exec jupyter nbconvert --to html --execute {} \; | |
test-cpp-notebooks: | |
# A special job just for the Hybrid Plugin System because it needs a | |
# C++ build. | |
name: Test Hybrid Plugin System notebook | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/openassetio/openassetio-build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
python -m pip install . | |
python -m pip install -r examples/resources/requirements.txt | |
python -m pip install openassetio-traitgen | |
- name: Build/install OpenAssetIO | |
uses: ./.github/build_openassetio | |
with: | |
install-prefix: dependencies | |
- name: Build/install MediaCreation | |
run: | | |
cmake -S . -B build -G Ninja | |
cmake --build build | |
cmake --install build --prefix dependencies | |
- name: Build/install SimpleHybridManager | |
run: | | |
cd examples/resources/hybrid_plugin_system/SimpleHybridManager | |
cmake -S src -B build -G Ninja | |
cmake --build build | |
cmake --install build --prefix plugin | |
env: | |
CMAKE_PREFIX_PATH: dependencies | |
- name: Test notebook | |
run: jupyter nbconvert --to html --execute examples/hybrid_plugin_system.ipynb | |