1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-31 16:57:34 +00:00

CI+Lagom: Add Lagom Android CI for arm64-v8a on NDK 24 with API level 30

This will let us validate that we aren't breaking any library compile
steps for arm64.
This commit is contained in:
Andrew Kaster 2022-07-20 00:13:12 -06:00 committed by Andreas Kling
parent f4e30d6b17
commit 2aaaee6744
5 changed files with 62 additions and 5 deletions

View file

@ -9,6 +9,8 @@ parameters:
toolchain_ccache_path: ''
toolchain_ccache_size: $(CCACHE_MAXSIZE)
with_remote_data_caches: true
ndk_version: ''
with_ndk_cache: false
steps:
- script: |
@ -75,3 +77,13 @@ steps:
key: '"unicode_locale" | Meta/CMake/unicode_data.cmake'
path: $(Build.SourcesDirectory)/${{ parameters.build_directory }}/CLDR
displayName: 'UnicodeLocale Cache'
- ${{ if eq(parameters.with_ndk_cache, true) }}:
- bash: |
echo "##vso[task.setvariable variable=ANDROID_SDK_ROOT;]$ANDROID_SDK_ROOT"
displayName: 'Set ANDROID_SDK_ROOT'
- task: Cache@2
inputs:
key: '"ndk" | "$(Agent.OS)" | "${{ parameters.ndk_version }}" '
path: $(ANDROID_SDK_ROOT)/ndk
displayName: 'Android NDK Cache'