Update news.txt #98
This file contains hidden or 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
| name: AML Mod Compiler | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checking out repository... | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Installing Android NDK (r24)... | |
| uses: nttld/setup-ndk@v1 | |
| with: | |
| ndk-version: r24 | |
| local-cache: true | |
| - name: Building ARMPatch... | |
| run: ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./ARMPatch/armpatch_src/Android.mk NDK_APPLICATION_MK=./ARMPatch/armpatch_src/Application.mk NDK_DEBUG=0 -j12 | |
| - name: Building AML... | |
| run: ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_APPLICATION_MK=./Application.mk NDK_DEBUG=0 -j12 | |
| - name: Finished. Uploading the results. | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: AML_Libraries | |
| path: ./libs/**/libAML.so |