Skip to content

Merge remote-tracking branch 'upstream/stable/v3.7.x' into stable/v3.x #14

Merge remote-tracking branch 'upstream/stable/v3.7.x' into stable/v3.x

Merge remote-tracking branch 'upstream/stable/v3.7.x' into stable/v3.x #14

name: Homestore 3.x Build
on:
workflow_dispatch:
push:
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 }}