From c27a1ddb41ccf890c658e0e9786eb96b6064cd7a Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 13 Jul 2022 21:45:22 +0200 Subject: [PATCH] Add Android to CI --- .github/workflows/build_android.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build_android.yml diff --git a/.github/workflows/build_android.yml b/.github/workflows/build_android.yml new file mode 100644 index 000000000..9b29e46e9 --- /dev/null +++ b/.github/workflows/build_android.yml @@ -0,0 +1,21 @@ +name: Build Android +on: [push, pull_request] + +jobs: + + # Game + game-windows: + name: Game (Android, Release ARM64) + runs-on: "windows-2019" + steps: + - name: Checkout repo + uses: actions/checkout@v2 + - name: Setup Vulkan + uses: ./.github/actions/vulkan + - name: Checkout LFS + run: | + git lfs version + git lfs pull + - name: Build + run: | + .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=ARM64 -platform=Android -configuration=Release -buildtargets=FlaxGame