Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: ["main"]
workflow_dispatch: # allows manual trigger from GitHub UI

env:
OPENVAF_VERSION: openvaf-reloaded-20260616-2-gc592eed6

permissions:
contents: write # needed to push to gh-pages branch

Expand All @@ -24,6 +27,21 @@ jobs:
environments: default
cache: true

- name: Cache openvaf-r
id: cache-openvaf
uses: actions/cache@v4
with:
path: /usr/local/bin/openvaf-r
key: ${{ env.OPENVAF_VERSION }}-linux_x64

- name: Install openvaf-r (cache miss)
if: steps.cache-openvaf.outputs.cache-hit != 'true'
run: |
curl -fsSL https://fides.fe.uni-lj.si/openvaf/download/${{ env.OPENVAF_VERSION }}-linux_x64.tar.gz | tar xzf - -C /usr/local/bin/

- name: Compile OSDI files
run: pixi run compile_osdi

- name: Execute example notebooks
run: pixi run nbrun

Expand Down
Loading