This repository was archived by the owner on Jan 6, 2026. It is now read-only.
Merge remote-tracking branch 'upstream/main' #201
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: iOS Build | |
| on: | |
| push: | |
| branches: ['main'] | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| build: | |
| name: iOS Build | |
| permissions: write-all | |
| runs-on: macos-15 | |
| steps: | |
| - name: Pulling the new commit | |
| uses: actions/checkout@v4 | |
| - name: Setting up Haxe | |
| uses: krdlab/setup-haxe@v2 | |
| with: | |
| haxe-version: 4.3.7 | |
| - name: Restore existing build cache for faster compilation | |
| uses: actions/cache@v4.2.3 | |
| with: | |
| # not caching the bin folder to prevent asset duplication and stuff like that | |
| key: cache-build-ios | |
| path: | | |
| .haxelib/ | |
| export/release/ios/CodenameEngine/haxe/ | |
| - run: | | |
| echo "HXCPP_COMPILE_CACHE=~/.hxcpp" >> $GITHUB_ENV | |
| - name: Installing/Updating libraries | |
| run: | | |
| haxe -cp commandline -D analyzer-optimize --run Main setup -s | |
| - name: Building the game | |
| run: haxelib run lime build ios -eval -nosign -final | |
| - name: Clearing already existing cache | |
| uses: actions/github-script@v6 | |
| with: | |
| script: | | |
| const caches = await github.rest.actions.getActionsCacheList({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| }) | |
| for (const cache of caches.data.actions_caches) { | |
| if (cache.key == "cache-build-ios") { | |
| console.log('Clearing ' + cache.key + '...') | |
| await github.rest.actions.deleteActionsCacheById({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| cache_id: cache.id, | |
| }) | |
| console.log("Cache cleared.") | |
| } | |
| } | |
| - name: Making ipa file | |
| run: | | |
| brew install ldid | |
| cd export/release/ios/build/Release-iphoneos/CodenameEngine.app | |
| ldid -S../../../CodenameEngine/CodenameEngine.entitlements CodenameEngine | |
| cd .. | |
| mkdir Payload | |
| mv CodenameEngine.app Payload | |
| zip -r CodenameEngine.ipa Payload | |
| - name: Uploading artifact (entire build) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Codename Engine iOS | |
| path: export/release/ios/build/Release-iphoneos/*.ipa | |
| - name: Uploading new cache | |
| uses: actions/cache@v4.2.3 | |
| with: | |
| # caching again since for some reason it doesnt work with the first post cache shit | |
| key: cache-build-ios | |
| path: | | |
| .haxelib/ | |
| export/release/ios/CodenameEngine/haxe/ |