This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (64 loc) · 2.22 KB
/
main.yml
File metadata and controls
66 lines (64 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
name: Main
on: workflow_dispatch
jobs:
Build:
name: ${{ matrix.name }}
strategy:
matrix:
include:
- name: Windows x86_64
os: windows-2025
buildArgs: windows
assetType: S3TC
artifactName: windowsBuild-x86_64
artifactPath: export\release\windows\bin\*
- name: Windows ARM64
os: windows-2025
buildArgs: "windows -arm64 -D HXCPP_ARM64"
assetType: ASTC
artifactName: windowsBuild-arm64
artifactPath: export\release\windows\bin\*
- name: Linux x86_64
os: ubuntu-22.04
buildArgs: linux
assetType: S3TC
artifactName: linuxBuild-x86_64
artifactPath: export/release/linux/bin/*
- name: Linux ARM64
os: ubuntu-22.04-arm
buildArgs: "linux -arm64 -D HXCPP_ARM64"
assetType: ASTC
artifactName: linuxBuild-arm64
artifactPath: export/release/linux/bin/*
- name: macOS x86_64
os: macos-15
buildArgs: "mac -64 -D HXCPP_M64"
assetType: PNG
artifactName: macOSBuild-x86_64
artifactPath: export/release/macos/bin/*
- name: macOS ARM64
os: macos-15
buildArgs: "mac -arm64 -D HXCPP_ARM64"
assetType: PNG
artifactName: macOSBuild-arm64
artifactPath: export/release/macos/bin/*
- name: Android
os: macos-15
buildArgs: "android -ONLY_ARM64"
assetType: ASTC
artifactName: androidBuild
artifactPath: "export/release/android/bin/app/build/outputs/apk/release/*.apk"
- name: iOS
os: macos-15
buildArgs: "ios -nosign"
assetType: ASTC
artifactName: iOSBuild
artifactPath: "export/release/ios/build/Release-iphoneos/*.ipa"
uses: ./.github/workflows/build.yml
with:
name: ${{ matrix.name }}
os: ${{ matrix.os }}
buildArgs: ${{ matrix.buildArgs }}
assetType: ${{ matrix.assetType }}
artifactName: ${{ matrix.artifactName }}
artifactPath: ${{ matrix.artifactPath }}