Skip to content

Commit

Permalink
Add 3.x workflow to master.
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Jul 15, 2024
1 parent 1a0cef8 commit 4fba7c7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/merge_build_3x.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Homestore 3.x Build

on:
workflow_dispatch:
push:
branches:
- stable/v3.x

jobs:
Build:
strategy:
fail-fast: false
matrix:
platform: ["ubuntu-22.04", "ubuntu-20.04"]
build-type: ["Debug", "Release"]
malloc-impl: ["libc", "tcmalloc"]
prerelease: ["True", "False"]
exclude:
- build-type: Debug
platform: ubuntu-20.04
- build-type: Debug
malloc-impl: tcmalloc
- malloc-impl: tcmalloc
platform: ubuntu-20.04
- malloc-impl: libc
build-type: Release
platform: ubuntu-22.04
- prerelease: "True"
platform: ubuntu-20.04
uses: ./.github/workflows/build_commit.yml
with:
platform: ${{ matrix.platform }}
build-type: ${{ matrix.build-type }}
malloc-impl: ${{ matrix.malloc-impl }}
prerelease: ${{ matrix.prerelease }}

0 comments on commit 4fba7c7

Please sign in to comment.