Skip to content

disable python bindings from ci #42

disable python bindings from ci

disable python bindings from ci #42

Workflow file for this run

# config file to run multiple jobs in parallel with matrix strategy
name: Config Workflow
on:
push:
jobs:
build-and-test:
strategy:
# super important if you want to see all results, even if one fails
# fail-fast is true by default
fail-fast: false
matrix:
use-system-libraries: ["OFF","ON"]
build-type: ["Debug","Release"]
# use-python-bindings: ["OFF","ON"]
# exclude:
# # excludes combinations that are not supported
# - use-python-bindings: "ON"
# use-sanitizers: "ON"
uses: ./.github/workflows/common-workflow.yml # calls the one above

Check failure on line 22 in .github/workflows/config.yml

View workflow run for this annotation

GitHub Actions / Config Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/config.yml (Line: 22, Col: 11): Input use-python-bindings is required, but not provided while calling.
with:
use-system-libraries: ${{ matrix.use-system-libraries }}
build-type: ${{ matrix.build-type }}
# use-python-bindings: ${{ matrix.use-python-bindings }}
secrets: inherit