Skip to content

HomeBlocks Build

HomeBlocks Build #27

Workflow file for this run

name: HomeBlocks Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Build:
strategy:
fail-fast: false
matrix:
platform: ["ubuntu-22.04"]
build-type: ["Debug", "Release"]
malloc-impl: ["libc", "tcmalloc"]
prerelease: ["True", "False"]
tooling: ["Sanitize", "Coverage", "None"]
exclude:
- build-type: Debug
prerelease: "False"
- build-type: Debug
tooling: None
- build-type: Debug
malloc-impl: tcmalloc
- build-type: Release
malloc-impl: libc
- build-type: Release
tooling: Sanitize
- build-type: Release
tooling: Coverage
uses: ./.github/workflows/build_commit.yml

Check failure on line 35 in .github/workflows/conan_build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/conan_build.yml

Invalid workflow file

error parsing called workflow ".github/workflows/conan_build.yml" -> "./.github/workflows/build_commit.yml" : failed to fetch workflow: workflow was not found.
with:
platform: ${{ matrix.platform }}
build-type: ${{ matrix.build-type }}
malloc-impl: ${{ matrix.malloc-impl }}
prerelease: ${{ matrix.prerelease }}
tooling: ${{ matrix.tooling }}