mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-18 00:59:35 -04:00
commit
aa236a67ee
81
.github/workflows/android.yml
vendored
81
.github/workflows/android.yml
vendored
@ -21,77 +21,46 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
java-version: 1.8
|
java-version: 1.8
|
||||||
|
|
||||||
|
- name: Get gl4es latest commit hash
|
||||||
|
id: gl4es-sha
|
||||||
|
run: echo "::set-output name=sha::$(git ls-remote https://github.com/ptitSeb/gl4es refs/heads/master | grep -io '^\S*')"
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Cache gl4es
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: gl4es-cache
|
||||||
|
with:
|
||||||
|
path: gl4es/libs
|
||||||
|
key: gl4es-android-shared-${{ steps.gl4es-sha.outputs.sha }}
|
||||||
|
|
||||||
- name: Get gl4es
|
- name: Get gl4es
|
||||||
|
if: steps.gl4es-cache.outputs.cache-hit != 'true'
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: 'ptitSeb/gl4es'
|
repository: 'ptitSeb/gl4es'
|
||||||
path: 'gl4es'
|
path: 'gl4es'
|
||||||
|
|
||||||
- name: Build latest GL4ES
|
- name: Build gl4es
|
||||||
|
if: steps.gl4es-cache.outputs.cache-hit != 'true'
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
cd gl4es
|
cd gl4es
|
||||||
mv ../Android_gl4es.mk Android.mk
|
mv ../Android_gl4es.mk Android.mk
|
||||||
$ANDROID_NDK_HOME/ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_DEBUG=1
|
$ANDROID_NDK_HOME/ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_DEBUG=1
|
||||||
cp -R libs/* ../app_pojavlauncher/src/main/jniLibs/
|
|
||||||
|
|
||||||
- name: Get jre8-aarch32
|
- name: Install gl4es
|
||||||
|
run: cp -R gl4es/libs/* app_pojavlauncher/src/main/jniLibs/
|
||||||
|
|
||||||
|
- name: Get JRE
|
||||||
uses: dawidd6/action-download-artifact@v2
|
uses: dawidd6/action-download-artifact@v2
|
||||||
with:
|
with:
|
||||||
github_token: ${{secrets.GITHUB_TOKEN}}
|
github_token: ${{secrets.GITHUB_TOKEN}}
|
||||||
workflow: build.yml
|
workflow: build.yml
|
||||||
path: jre
|
path: app_pojavlauncher/src/main/assets/components/jre
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
repo: PojavLauncherTeam/android-openjdk-build-multiarch
|
repo: PojavLauncherTeam/android-openjdk-build-multiarch
|
||||||
name: jre8-aarch32
|
name: jre8-pojav
|
||||||
|
|
||||||
- name: Get jre8-aarch64
|
|
||||||
uses: dawidd6/action-download-artifact@v2
|
|
||||||
with:
|
|
||||||
github_token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
workflow: build.yml
|
|
||||||
path: jre
|
|
||||||
workflow_conclusion: success
|
|
||||||
repo: PojavLauncherTeam/android-openjdk-build-multiarch
|
|
||||||
name: jre8-aarch64
|
|
||||||
|
|
||||||
- name: Get jre8-x86
|
|
||||||
uses: dawidd6/action-download-artifact@v2
|
|
||||||
with:
|
|
||||||
github_token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
workflow: build.yml
|
|
||||||
path: jre
|
|
||||||
workflow_conclusion: success
|
|
||||||
repo: PojavLauncherTeam/android-openjdk-build-multiarch
|
|
||||||
name: jre8-x86
|
|
||||||
|
|
||||||
- name: Get jre8-x86_64
|
|
||||||
uses: dawidd6/action-download-artifact@v2
|
|
||||||
with:
|
|
||||||
github_token: ${{secrets.GITHUB_TOKEN}}
|
|
||||||
workflow: build.yml
|
|
||||||
path: jre
|
|
||||||
workflow_conclusion: success
|
|
||||||
repo: PojavLauncherTeam/android-openjdk-build-multiarch
|
|
||||||
name: jre8-x86_64
|
|
||||||
|
|
||||||
- name: Repack JRE
|
|
||||||
run: |
|
|
||||||
cd jre
|
|
||||||
mkdir work
|
|
||||||
mkdir work1
|
|
||||||
cd work
|
|
||||||
jrepath=$GITHUB_WORKSPACE/app_pojavlauncher/src/main/assets/components/jre
|
|
||||||
mkdir -p $jrepath
|
|
||||||
work=$GITHUB_WORKSPACE/jre/work
|
|
||||||
work1=$GITHUB_WORKSPACE/jre/work1
|
|
||||||
makearch () { echo "Making $2..."; cd $work; tar xf $(ls ../jre8-$2-*release.tar.xz) > /dev/null 2>&1; mv bin $work1/; mkdir -p $work1/lib; mv lib/$1 $work1/lib/; mv lib/jexec $work1/lib/; tar cJf bin-$2.tar.xz -C $work1 . > /dev/null 2>&1; mv bin-$2.tar.xz $jrepath/; rm -rf $work/*; rm -rf $work1/*; }
|
|
||||||
makeuni () { echo "Making universal..."; cd $work; tar xf $(ls ../jre8-arm64-*release.tar.xz) > /dev/null 2>&1; rm -rf bin; rm -rf lib/aarch64; rm lib/jexec; tar cJf universal.tar.xz * > /dev/null 2>&1; mv universal.tar.xz $jrepath/; rm -rf $work/*; }
|
|
||||||
makeuni
|
|
||||||
makearch aarch32 arm
|
|
||||||
makearch aarch64 arm64
|
|
||||||
makearch i386 x86
|
|
||||||
makearch amd64 x86_64
|
|
||||||
- name: Build APK with Gradle
|
- name: Build APK with Gradle
|
||||||
run: |
|
run: |
|
||||||
chmod +x scripts/languagelist_updater.sh
|
chmod +x scripts/languagelist_updater.sh
|
||||||
|
@ -28,7 +28,7 @@ Will be moved to **BUILDING.md**
|
|||||||
- JRE for Android is [here](https://github.com/PojavLauncherTeam/openjdk-multiarch-jdk8u), also the build script [here](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch).
|
- JRE for Android is [here](https://github.com/PojavLauncherTeam/openjdk-multiarch-jdk8u), also the build script [here](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch).
|
||||||
- Follow build instruction on build script [README.md](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch/blob/buildjre8/README.md).
|
- Follow build instruction on build script [README.md](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch/blob/buildjre8/README.md).
|
||||||
- You can also get [CI auto builds](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch/actions).
|
- You can also get [CI auto builds](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch/actions).
|
||||||
- Spliting JRE and put to the launcher:
|
- Either get `jre8-pojav` artifact from auto builds, or do splitting by yourself:</br>
|
||||||
- Get JREs for all of 4 supported architectures (arm, arm64, x86, x86_64) </br>
|
- Get JREs for all of 4 supported architectures (arm, arm64, x86, x86_64) </br>
|
||||||
- Split JRE into parts:</br>
|
- Split JRE into parts:</br>
|
||||||
Platform-independent: .jar files, libraries, configs, etc...</br>
|
Platform-independent: .jar files, libraries, configs, etc...</br>
|
||||||
|
@ -1 +0,0 @@
|
|||||||
20210418
|
|
Loading…
x
Reference in New Issue
Block a user