-
Notifications
You must be signed in to change notification settings - Fork 766
60 lines (54 loc) · 1.33 KB
/
reuse.macos.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
name: macOS
on:
workflow_call:
inputs:
build_profile:
description: 'Build profile, debug or release'
type: string
required: true
default: 'debug'
env:
BUILD_PROFILE: ${{ inputs.build_profile }}
RUNNER_PROVIDER: github
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
arch:
- x86_64
- aarch64
steps:
- uses: actions/checkout@v4
with:
# fetch all tags, metasrv and metaclient need tag as its version.
fetch-depth: 0
- uses: ./.github/actions/build_macos
with:
target: ${{ matrix.arch }}-apple-darwin
test_stateless_standalone:
runs-on: macos-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test_stateless_standalone_macos
test_stateless_cluster:
runs-on: macos-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test_stateless_cluster_macos
timeout-minutes: 30
sqllogic_standalone:
runs-on: macos-latest
needs: build
strategy:
matrix:
dirs:
- "base"
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/test_sqllogic_standalone_macos
timeout-minutes: 20
with:
dirs: ${{ matrix.dirs }}