generated from ShadowMario/FNF-PsychEngine
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00323ee
commit af18fe4
Showing
1 changed file
with
2 additions
and
72 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
- name: Install Haxelib | ||
run: | | ||
haxelib setup ~/haxelib | ||
haxelib install hxcpp > /dev/null | ||
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 | ||
|
@@ -78,6 +78,7 @@ jobs: | |
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 }} | ||
|
||
|
@@ -89,74 +90,3 @@ jobs: | |
with: | ||
name: buildAndroid | ||
path: export/release/android/bin/app/build/outputs/apk/debug | ||
buildAndroidx32: | ||
name: buildAndroidx32 | ||
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: r21e | ||
|
||
- name: Setup Java JDK | ||
uses: actions/setup-java@main | ||
with: | ||
distribution: 'zulu' | ||
java-version: 18 | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@main | ||
|
||
- name: Setup Haxe | ||
uses: krdlab/[email protected] | ||
with: | ||
haxe-version: 4.2.5 | ||
|
||
- name: Install Haxelib | ||
run: | | ||
haxelib setup ~/haxelib | ||
haxelib install hxcpp > /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 | ||
env: | ||
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} | ||
|
||
- name: Compile | ||
run: haxelib run lime build android -32 -D 32bits --app-version="4.0.0-${{ github.run_id}}" | ||
|
||
- name: Publish Artifact | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: buildAndroidx32 | ||
path: export/32bit/android/bin/app/build/outputs/apk/debug |