-
-
Notifications
You must be signed in to change notification settings - Fork 103
73 lines (70 loc) · 2.43 KB
/
Copy pathbuild-feature.yml
File metadata and controls
73 lines (70 loc) · 2.43 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Build feature
permissions:
contents: read
on:
pull_request:
# Run CI for PRs into main, and into long-lived feature/* branches so
# contributors can stack fix commits onto an in-progress feature branch.
# Signing still only happens on push to main (see build-windows.yml).
branches:
- "main"
- "feature/**"
jobs:
get-version:
uses: ./.github/workflows/get-version.yml
create-test-bundle:
uses: ./.github/workflows/create-test-bundle.yml
# Non-blocking initially: surfaces real issues without gating PRs while the
# team triages what falls out. Drop continue-on-error to make it required.
sanitizer-tests:
needs: get-version
uses: ./.github/workflows/tests-sanitizers.yml
with:
version: ${{ needs.get-version.outputs.version }}
build-server-x64:
needs: [get-version, create-test-bundle]
uses: ./.github/workflows/build-windows.yml
with:
architecture: x64
version: ${{ needs.get-version.outputs.version }}
secrets:
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
build-server-x86:
needs: [get-version, create-test-bundle]
uses: ./.github/workflows/build-windows.yml
with:
architecture: x86
version: ${{ needs.get-version.outputs.version }}
secrets:
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
build-x86-static:
needs: get-version
uses: ./.github/workflows/build-windows-legacy.yml
with:
architecture: x86
version: ${{ needs.get-version.outputs.version }}
secrets:
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
build-debian:
needs: [get-version, create-test-bundle]
uses: ./.github/workflows/build-debian.yml
with:
architecture: x64
version: ${{ needs.get-version.outputs.version }}
build-redhat:
needs: [get-version, create-test-bundle]
uses: ./.github/workflows/build-redhat.yml
with:
architecture: x64
version: ${{ needs.get-version.outputs.version }}
build-web:
needs: get-version
uses: ./.github/workflows/build-web.yml
with:
version: ${{ needs.get-version.outputs.version }}