forked from MaysLastPlaysThings/exe-2.5-code
-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (76 loc) · 2.74 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# 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: 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 4.2.1 > /dev/null
haxelib install lime 7.9.0
haxelib install flixel 4.11.0
haxelib install flixel-addons 2.11.0
haxelib install flixel-ui
haxelib install hscript
haxelib install newgrounds
haxelib install openfl 9.1.0
haxelib install hxCodec 2.6.1
haxelib git linc_luajit https://github.com/Default-name123/luashitjict.git
haxelib git extension-androidtools https://github.com/Default-name123/oldtools.git
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 flixel-addons 2.11.0
haxelib set flixel 4.11.0
haxelib set openfl 9.1.0
haxelib set lime 7.9.0
haxelib set hxCodec 2.6.1
haxelib set hxcpp 4.2.1
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
- name: Compile
run: haxelib run lime build android --app-version="4.0.0-${{ github.run_id}}"
- name: Publish Artifact
uses: actions/upload-artifact@main
with:
name: Sonic-Android
path: export/release/android/bin/app/build/outputs/apk/debug