This repository was archived by the owner on Oct 18, 2025. It is now read-only.
cache plz work #114
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 (32 Bits) | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Windows Build 32 Bits | |
| permissions: write-all | |
| runs-on: windows-latest | |
| steps: | |
| - name: Pull the New Commit | |
| uses: actions/checkout@v2 | |
| - name: Setup Haxe | |
| uses: krdlab/setup-haxe@v1 | |
| with: | |
| haxe-version: 4.3.7 | |
| - name: Restore Build Cache | |
| uses: actions/cache@v3 | |
| with: | |
| key: cache-build-windows32 | |
| path: | | |
| .haxelib/ | |
| export/32bit/windows/haxe/ | |
| export/32bit/windows/obj/ | |
| restore-keys: cache-build-windows32 | |
| - name: Install Libraries | |
| run: setup/install-haxelibs.bat | |
| - name: Build for Windows (32 Bits) | |
| run: haxelib run lime build windows -32 -D 32bits -D HXCPP_M32 | |
| - name: Upload Game | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ALE Engine - Windows Build (32 Bits) | |
| path: export/32bit/windows/bin | |
| - name: Uploading New Cache | |
| uses: actions/cache@v3 | |
| with: | |
| key: cache-build-windows | |
| path: | | |
| .haxelib/ | |
| export/release/windows/haxe/ | |
| export/release/windows/obj/ | |
| restore-keys: cache-build-windows32 |