Revert "Fixes for Flixel 5.3 and hxCodec 3" #285
Workflow file for this run
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: 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 ] | |
pull_request: | |
branches: [ main ] | |
# 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" | |
buildAndroid: | |
name: buildAndroid | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Setup Android NDK | |
uses: nttld/setup-ndk@main | |
id: setup-ndk | |
with: | |
ndk-version: r15c | |
- name: Setup Java JDK | |
uses: actions/setup-java@main | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@main | |
- name: Setup Haxe | |
uses: krdlab/[email protected] | |
with: | |
haxe-version: 4.2.0 | |
- name: Install Haxelib | |
run: | | |
haxelib setup ~/haxelib | |
haxelib install hxcpp 4.2.1 > /dev/null | |
haxelib install lime 7.9.0 | |
haxelib install openfl 9.1.0 | |
haxelib --never install flixel 4.11.0 | |
haxelib run lime setup flixel | |
haxelib install flixel-tools | |
haxelib install flixel-ui | |
haxelib install flixel-addons 2.11.0 | |
haxelib install tjson | |
haxelib install hxjsonast | |
haxelib install hscript | |
haxelib git hxCodec https://github.com/SPLCoding/hxCodec-but-it-works-xd.git | |
haxelib git linc_luajit https://github.com/Sirox228/linc_luajit | |
haxelib git extension-androidtools https://github.com/MaysLastPlay77/extension-androidtools | |
haxelib install hxcpp-debug-server | |
haxelib list | |
- name: Create Version Tag | |
run: echo "${{github.run_id}}" > VERSION | |
- name: Setup Lime | |
run: | | |
haxelib run lime setup -alias -y | |
haxelib run lime config ANDROID_SDK $ANDROID_HOME | |
haxelib run lime config ANDROID_NDK_ROOT $ANDROID_NDK_HOME | |
haxelib run lime config JAVA_HOME $JAVA_HOME | |
haxelib run lime config ANDROID_SETUP true | |
haxelib set lime 7.9.0 | |
haxelib set openfl 9.1.0 | |
haxelib set flixel 4.11.0 | |
haxelib set flixel-addons 2.11.0 | |
haxelib set hxcpp 4.2.1 | |
env: | |
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} | |
- name: Compile | |
run: haxelib run lime build android -D NO_PRECOMPILED_HEADERS --app-version="4.0.0-${{ github.run_id}}" | |
- name: Publish Artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: buildAndroid | |
path: export/release/android/bin/app/build/outputs/apk/debug |