Skip to content

Update recipe

Update recipe #225

Workflow file for this run

name: Sisl PR Build
on:
pull_request:
branches:
- stable/v8.x
- master
jobs:
Build:
strategy:
fail-fast: false
matrix:
platform: ["ubuntu-22.04"]
build-type: ["Debug", "Release"]
malloc-impl: ["libc", "tcmalloc"]
prerelease: ["True", "False"]
exclude:
- build-type: Debug
platform: tcmalloc
- malloc-impl: libc
build-type: Release
uses: ./.github/workflows/build_dependencies.yml
with:
platform: ${{ matrix.platform }}
branch: ${{ github.ref }}
build-type: ${{ matrix.build-type }}
malloc-impl: ${{ matrix.malloc-impl }}
prerelease: ${{ matrix.prerelease }}
testing: 'True'