-
Notifications
You must be signed in to change notification settings - Fork 10
54 lines (45 loc) · 1.12 KB
/
build-release.yml
File metadata and controls
54 lines (45 loc) · 1.12 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
name: build-release
on:
push:
tags: ["**"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: write
jobs:
build-x86_64-linux:
uses: ./.github/workflows/_prebuild-v8.yml
with:
runner: ubuntu-22.04
target: x86_64-linux
build_type: release
build-x86_64-linux-debug:
uses: ./.github/workflows/_prebuild-v8.yml
with:
runner: ubuntu-22.04
target: x86_64-linux
build_type: debug
build-arm64-linux:
uses: ./.github/workflows/_prebuild-v8.yml
with:
runner: ubuntu-22.04-arm
target: aarch64-linux
build_type: release
build-aarch64-macos:
uses: ./.github/workflows/_prebuild-v8.yml
with:
runner: macos-26
target: aarch64-macos
build_type: release
build-x86_64-macos:
uses: ./.github/workflows/_prebuild-v8.yml
with:
runner: macos-26-intel
target: x86_64-macos
build_type: release
build-aarch64-ios:
uses: ./.github/workflows/_prebuild-v8.yml
with:
runner: macos-26
target: aarch64-ios-simulator
build_type: release