Skip to content

Commit

Permalink
Copy v8 workflow to master
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Jul 17, 2024
1 parent fe7208b commit 930daf9
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/merge_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- master
- stable/v8.x

jobs:
Build:
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/merge_conan_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: IOManager v8 Build

on:
workflow_dispatch:
push:
branches:
- stable/v8.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
- malloc-impl: tcmalloc
platform: ubuntu-20.04
- malloc-impl: libc
build-type: Release
platform: ubuntu-22.04
- prerelease: "False"
build-type: Debug
uses: ./.github/workflows/build_commit.yml
with:
platform: ${{ matrix.platform }}
build-type: ${{ matrix.build-type }}
malloc-impl: ${{ matrix.malloc-impl }}
prerelease: ${{ matrix.prerelease }}
ChainBuild:
runs-on: "ubuntu-22.04"
steps:
- name: Start Homestore Build
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.CHAIN_BUILD_TOKEN }}"\
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/eBay/homestore/actions/workflows/merge_conan_build.yml/dispatches \
-d '{"ref":"stable/v3.x","inputs":{}}'
if: ${{ github.ref == 'refs/heads/stable/v8.x' }}

0 comments on commit 930daf9

Please sign in to comment.