-
Notifications
You must be signed in to change notification settings - Fork 20
43 lines (41 loc) · 1.22 KB
/
merge_conan_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Sisl Merge Build
on:
workflow_dispatch:
push:
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:
- malloc-impl: libc
build-type: Release
platform: ubuntu-22.04
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'
ChainBuild:
runs-on: "ubuntu-22.04"
steps:
- name: Start IOManager 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/iomanager/actions/workflows/merge_conan_build.yml/dispatches \
-d '{"ref":"stable/v8.x","inputs":{}}'
if: ${{ github.ref == 'refs/heads/stable/v8.x' }}