Lua Patcher and code editor: initial commit #5
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
name: Android Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
x64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Fetch submodules | |
run: git submodule update --init --recursive | |
- name: Setup Vulkan SDK | |
uses: humbletim/[email protected] | |
with: | |
vulkan-query-version: latest | |
vulkan-use-cache: true | |
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '17' | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DBUILD_HYDRA_CORE=1 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=${ANDROID_NDK_ROOT}/build/cmake/android.toolchain.cmake -DANDROID_ABI=x86_64 -DENABLE_VULKAN=0 -DENABLE_USER_BUILD=ON | |
- name: Build | |
run: | | |
git apply ./.github/gles.patch | |
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/x86_64/ | |
cd src/pandroid | |
./gradlew assembleDebug | |
cd ../.. | |
- name: Upload executable | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Android APK (x86-64) | |
path: './src/pandroid/app/build/outputs/apk/debug/app-debug.apk' | |
arm64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Fetch submodules | |
run: git submodule update --init --recursive | |
- name: Setup Vulkan SDK | |
uses: humbletim/[email protected] | |
with: | |
vulkan-query-version: latest | |
vulkan-use-cache: true | |
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '17' | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DBUILD_HYDRA_CORE=1 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=${ANDROID_NDK_ROOT}/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DENABLE_VULKAN=0 -DENABLE_USER_BUILD=ON -DCMAKE_CXX_FLAGS="-march=armv8-a+crypto" | |
- name: Build | |
run: | | |
git apply ./.github/gles.patch | |
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/arm64-v8a/ | |
cd src/pandroid | |
./gradlew assembleDebug | |
cd ../.. | |
- name: Upload executable | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Android APK (arm64) | |
path: './src/pandroid/app/build/outputs/apk/debug/app-debug.apk' | |