-
Notifications
You must be signed in to change notification settings - Fork 32
51 lines (44 loc) · 1.11 KB
/
ci-pipeline.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
44
45
46
47
48
49
50
51
name: CI Pipeline
concurrency:
group: pipeline-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
merge_group:
pull_request:
branches:
- "main"
types:
- opened
- synchronize
jobs:
check:
name: "Checks"
uses: ./.github/workflows/check.yml
with:
os: warp-ubuntu-latest-x64-4x
secrets:
cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}"
build-linux-x86_64:
needs: check
name: "Linux x86_64: Build"
uses: ./.github/workflows/build.yml
with:
os: warp-ubuntu-latest-x64-4x
secrets:
cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}"
# build-linux-aarch64:
# needs: check
# name: "Linux aarch64: Build"
# uses: ./.github/workflows/build.yml
# with:
# os: warp-ubuntu-latest-arm64-4x
# secrets:
# cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}"
build-macos-aarch64:
needs: check
name: "MacOS aarch64: Build"
uses: ./.github/workflows/build.yml
with:
os: warp-macos-latest-arm64-6x
secrets:
cachix-token: "${{ secrets.CACHIX_AUTH_TOKEN }}"