Files
pixelarium/.github/workflows/ci-workflow.yml
T
m-aXimilian b1923a490c Improve Pipeline & Misc Improvements (#12)
* split pipeline

* add dedicated doc build step

* parallel builds

* fix permissions

* rm push trigger

* mv gcc ubuntu

* add windows build

* always build the docs

* doc alignment

* checkout recursive

* depend on builds for documentation

* set standard via cmake

* update libCZI to main

* pretty_function win32

* version history update

* disable windows release build

missing dependencies for doc generation

trigger ci on push to main

adapt doc-gen job require only doxygen
2026-02-16 20:36:48 +01:00

26 lines
472 B
YAML

name: CI Workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build-ubuntu:
uses: ./.github/workflows/build-ubuntu.yml
build-windows:
uses: ./.github/workflows/build-windows.yml
generate-docs:
permissions:
id-token: write
pages: write
uses: ./.github/workflows/generate-docs.yml
if: github.ref == 'refs/heads/main'
needs:
- build-ubuntu
- build-windows