-
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (62 loc) · 1.45 KB
/
main.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "0 * * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name != 'schedule' }}
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- uses: ./.github/actions/build
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 20
needs: [build]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/e2e
linux-test:
runs-on: ubuntu-latest
timeout-minutes: 20
needs: [build]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/linux
macos-intel-test:
runs-on: macos-13
timeout-minutes: 20
needs: [build]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/mac-intel
macos-apple-silicon-test:
runs-on: macos-14
timeout-minutes: 20
needs: [build]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/mac-apple-silicon
windows-test:
runs-on: windows-latest
timeout-minutes: 20
needs: [build]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/windows
windows-wsl2-test:
runs-on: windows-latest
timeout-minutes: 20
needs: [build]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/windows-wsl2