Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Main

Main #5

Workflow file for this run

name: Main
on: workflow_dispatch
jobs:
Build:
name: ${{ matrix.name }}
strategy:
matrix:
include:
- name: Windows x86_64
os: windows-2025
buildArgs: windows
assetType: PNG
artifactName: windowsBuild-x86_64
artifactPath: export\release\windows\bin\*
- name: Windows ARM64
os: windows-2025
buildArgs: "windows -arm64 -D HXCPP_ARM64"
assetType: PNG
artifactName: windowsBuild-arm64
artifactPath: export\release\windows\bin\*
- name: Linux x86_64
os: ubuntu-22.04
buildArgs: linux
assetType: PNG
artifactName: linuxBuild-x86_64
artifactPath: export/release/linux/bin/*
- name: Linux ARM64
os: ubuntu-22.04-arm
buildArgs: "linux -arm64 -D HXCPP_ARM64"
assetType: PNG
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"
- name: Emscripten
os: macos-15
buildArgs: "webassembly"
assetType: PNG
artifactName: emscriptenBuild
artifactPath: export/release/webassembly/bin/*
uses: ./.github/workflows/build.yml
with:
name: ${{ matrix.name }}
os: ${{ matrix.os }}
buildArgs: ${{ matrix.buildArgs }}
assetType: ${{ matrix.assetType }}
artifactName: ${{ matrix.artifactName }}
artifactPath: ${{ matrix.artifactPath }}