Add files via upload #8
This file contains 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
# This is a basic workflow to help you get started with Actions | |
name: Project Engine Windows Build | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ main, experimental ] | |
pull_request: | |
branches: [ main, experimental ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
buildWindows: | |
runs-on: windows-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/[email protected] | |
- uses: krdlab/setup-haxe@master | |
with: | |
haxe-version: latest | |
# Runs a set of commands using the runners shell | |
- name: Install Haxelib | |
run: | | |
haxelib setup C:/haxelib | |
haxelib install hxcpp > /dev/null --quiet | |
haxe -cp ./setup -D analyzer-optimize -main Main --interp | |
shell: cmd | |
- name: Skip SScript setup mode | |
run: echo 'oy9:showMacroty8:loopCosti25y10:includeAllfg' >> %USERPROFILE%/settings.cocoa | |
shell: cmd | |
- name: Create Version Tag | |
run: echo "${{github.run_id}}" > VERSION | |
- name: Restore Previous Cache | |
id: cache-debug-build-windows-restore | |
uses: actions/cache/restore@main | |
with: | |
path: | | |
.haxelib/ | |
export/release/windows/haxe/ | |
export/release/windows/obj/ | |
key: cache-windows-build | |
- name: Compile | |
run: haxelib run lime build windows --app-version="4.0.0-${{ github.run_id}}" | |
- name: Clear Previous Cache | |
uses: actions/github-script@main | |
with: | |
script: | | |
try { | |
const caches = await github.rest.actions.getActionsCacheList({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
}) | |
if (typeof caches.data.actions_caches != null && caches.data.actions_caches.length > 0) { | |
for (const cache of caches.data.actions_caches) { | |
if (cache.key == "cache-windows-build") { | |
console.log('Clearing ' + cache.key + '...') | |
await github.rest.actions.deleteActionsCacheById({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
cache_id: cache.id, | |
}) | |
console.log("Previous Cache Cleared!") | |
} | |
} | |
} | |
} catch (error) { | |
console.log(error.message); | |
} | |
- name: Save Current Cache | |
id: cache-release-build-android-save | |
uses: actions/cache/save@main | |
with: | |
path: | | |
.haxelib/ | |
export/release/windows/haxe/ | |
export/release/windows/obj/ | |
key: cache-windows-build | |
- name: Publish Artifact | |
uses: actions/[email protected] | |
with: | |
name: windowsBuild | |
path: export/release/windows/bin |