-
Notifications
You must be signed in to change notification settings - Fork 5
53 lines (48 loc) · 976 Bytes
/
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
44
45
46
47
48
49
50
51
52
53
name: Builds
on:
push:
branches:
- main
tags:
- v*
pull_request:
workflow_dispatch:
jobs:
build_macos:
strategy:
fail-fast: false
matrix:
include:
- os: macos-14
xcode: "15.0.1"
- os: macos-14
xcode: "16.0.0"
- os: macos-15
xcode: "16.0.0"
uses: ./.github/workflows/common.yml
with:
os: ${{ matrix.os }}
xcode: ${{ matrix.xcode }}
secrets: inherit
build_native:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
uses: ./.github/workflows/common.yml
with:
os: ${{ matrix.os }}
secrets: inherit
build_container:
strategy:
fail-fast: false
matrix:
image:
- ghcr.io/acts-project/alma9-base:67
uses: ./.github/workflows/common.yml
with:
os: ubuntu-latest
image: ${{ matrix.image }}
secrets: inherit