Skip to content

Commit

Permalink
Test with NDK r26b
Browse files Browse the repository at this point in the history
  • Loading branch information
dg0yt committed Dec 24, 2023
1 parent f1c6efe commit a8aca1c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ parameters:
- name: tripletPattern
displayName: 'Enable triplets which contain this substring'
type: string
default: '-'
default: 'android'

jobs:
- template: windows/azure-pipelines.yml
Expand Down
9 changes: 9 additions & 0 deletions scripts/azure-pipelines/test-modified-ports.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,15 @@ if ($IsWindows)
rmdir empty
}

if ($IsLinuxHost)
{
Write-Host "Downloading Android NDK r26b"
& "./vcpkg" x-download android-ndk-r26b-linux.zip "--sha512=233e0b34c946a1ba60022809536307613ed956a4d596b3f43dc75e752b9d973f7c07f03a404a72a893629b86d8046664b9020920b3a6c64f68e223c5da109ec5" "--url=https://dl.google.com/android/repository/android-ndk-r26b-linux.zip"
Write-Host "Unpacking"
& unzip -q android-ndk-r26b-linux.zip
$env:ANDROID_NDK_HOME = Join-Path $Pwd "android-ndk-r26b-linux"
}

& "./vcpkg$executableExtension" x-ci-clean @commonArgs
if ($LASTEXITCODE -ne 0)
{
Expand Down

0 comments on commit a8aca1c

Please sign in to comment.