mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
name: Android Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Cache Android NDK r14b
|
|
id: ndk-cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: C:\android-ndk-r14b
|
|
key: android-ndk-r14b
|
|
|
|
- name: Download Android NDK r14b
|
|
if: steps.ndk-cache.outputs.cache-hit != 'true'
|
|
shell: powershell
|
|
run: |
|
|
Invoke-WebRequest `
|
|
-Uri "http://dl.google.com/android/repository/android-ndk-r14b-windows-x86_64.zip" `
|
|
-OutFile "ndk.zip"
|
|
|
|
- name: Extract Android NDK
|
|
if: steps.ndk-cache.outputs.cache-hit != 'true'
|
|
shell: powershell
|
|
run: |
|
|
Expand-Archive ndk.zip C:\
|
|
|
|
- name: Verify NDK path
|
|
shell: powershell
|
|
run: |
|
|
Test-Path "C:\android-ndk-r14b"
|
|
|
|
- name: Run build script
|
|
shell: powershell
|
|
run: |
|
|
./build.ps1 |