This repository was archived by the owner on Mar 3, 2026. It is now read-only.
Fixes for Linux #33
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: Windows Build | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| name: Windows Build | |
| permissions: write-all | |
| runs-on: windows-latest | |
| steps: | |
| - name: Pulling the new commit | |
| uses: actions/checkout@v4.1.7 | |
| - name: Setting up Haxe | |
| uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: 4.3.5 | |
| - name: Installing/Updating libraries | |
| run: | | |
| haxelib --always install hxcpp | |
| shell: cmd | |
| - name: Building HxCompileU | |
| run: | | |
| haxe build.hxml | |
| - name: Uploading artifact (entire build) | |
| uses: actions/upload-artifact@v4.3.4 | |
| with: | |
| name: Win64_HxCompileU | |
| path: export/haxeCompileU.exe |