Skip to content

Enable GitHub workflows on all stable branches. #194

Enable GitHub workflows on all stable branches.

Enable GitHub workflows on all stable branches. #194

Workflow file for this run

name: Homestore PR Build
on:
pull_request:
branches:
- master
- stable/**
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
malloc-impl: tcmalloc
- malloc-impl: libc
build-type: Release
platform: 'ubuntu-22.04'
uses: ./.github/workflows/build_commit.yml
with:
platform: ${{ matrix.platform }}
build-type: ${{ matrix.build-type }}
malloc-impl: ${{ matrix.malloc-impl }}
prerelease: ${{ matrix.prerelease }}