Main #85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Main | |
| on: workflow_dispatch | |
| jobs: | |
| Build: | |
| name: ${{ matrix.name }} | |
| strategy: | |
| matrix: | |
| include: | |
| - name: Windows i686 | |
| os: windows-2025 | |
| buildArgs: "windows -32 -D HXCPP_M32" | |
| assetType: S3TC | |
| artifactName: windowsBuild-i686 | |
| artifactPath: export\release\windows\bin\* | |
| - name: Windows x86_64 | |
| os: windows-2025 | |
| buildArgs: "windows -64 -D HXCPP_M64" | |
| assetType: S3TC | |
| artifactName: windowsBuild-x86_64 | |
| artifactPath: export\release\windows\bin\* | |
| - name: Windows ARM64 | |
| os: windows-2025 | |
| buildArgs: "windows -arm64 -D HXCPP_ARM64" | |
| assetType: S3TC | |
| artifactName: windowsBuild-arm64 | |
| artifactPath: export\release\windows\bin\* | |
| - name: Linux i686 | |
| os: ubuntu-24.04 | |
| buildArgs: "linux -32 -D HXCPP_M32" | |
| assetType: S3TC | |
| artifactName: linuxBuild-i686 | |
| artifactPath: export/release/linux/bin/* | |
| - name: Linux x86_64 | |
| os: ubuntu-24.04 | |
| buildArgs: "linux -64 -D HXCPP_M64" | |
| assetType: S3TC | |
| artifactName: linuxBuild-x86_64 | |
| artifactPath: export/release/linux/bin/* | |
| - name: Linux ARMV7 | |
| os: ubuntu-24.04-arm | |
| buildArgs: "linux -armv7 -D HXCPP_ARMV7" | |
| assetType: ASTC | |
| artifactName: linuxBuild-armv7 | |
| artifactPath: export/release/linux/bin/* | |
| - name: Linux ARM64 | |
| os: ubuntu-24.04-arm | |
| buildArgs: "linux -arm64 -D HXCPP_ARM64" | |
| assetType: ASTC | |
| artifactName: linuxBuild-arm64 | |
| artifactPath: export/release/linux/bin/* | |
| - name: macOS x86_64 | |
| os: macos-26 | |
| buildArgs: "mac -64 -D HXCPP_M64" | |
| assetType: S3TC | |
| artifactName: macOSBuild-x86_64 | |
| artifactPath: export/release/macos/bin/* | |
| - name: macOS ARM64 | |
| os: macos-26 | |
| buildArgs: "mac -arm64 -D HXCPP_ARM64" | |
| assetType: S3TC | |
| artifactName: macOSBuild-arm64 | |
| artifactPath: export/release/macos/bin/* | |
| - name: Android | |
| os: macos-26 | |
| buildArgs: "android -ONLY_ARM64" | |
| assetType: ASTC | |
| artifactName: androidBuild | |
| artifactPath: "export/release/android/bin/app/build/outputs/apk/release/*.apk" | |
| - name: iOS | |
| os: macos-26 | |
| 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 }} |