I am new to Azure devops Pipelines and was currently setting up pipeline following the documentations. My builds are failing due to this error
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
Agent I use in Azure devops is macos-latest. My yml file content is as given below
trigger:
- develop
pool:
vmImage: 'macos-latest'
steps:
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx3072m'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
tasks: 'assembleDebug --info'
Can anyone help me fixing this?