Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Android CI vmImage: 'MacOS-12' with vmImage: 'ubuntu-latest' #21172

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
start_emulator
  • Loading branch information
jchen351 committed Jun 25, 2024
commit 99e2f7a04d8f9bb31042ce6104a5441decb00f3e
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ stages:
--android_ndk_path $ANDROID_NDK_HOME \
--android_abi=x86_64 \
--android_api=30 \
--android_run_emulator \
--build_java \
--test
displayName: CPU EP, Test on Android Emulator
Expand Down Expand Up @@ -322,13 +323,14 @@ stages:
--android_ndk_path $ANDROID_NDK_HOME \
--android_abi=x86_64 \
--android_api=29 \
--android_run_emulator \
--build_java \
--use_nnapi \
--test
displayName: NNAPI EP, Test, CodeCoverage on Android Emulator

# used by Build Minimal ORT
- script: brew install coreutils ninja
- script: sudo apt install -y coreutils ninja-build
jchen351 marked this conversation as resolved.
Show resolved Hide resolved
displayName: Install coreutils and ninja

- script: /bin/bash tools/ci_build/github/linux/ort_minimal/nnapi_minimal_build_minimal_ort_and_run_tests.sh $(pwd)
Expand Down Expand Up @@ -369,7 +371,7 @@ stages:
- template: "templates/use-android-ndk.yml"

# used by Build Minimal ORT
- script: brew install coreutils ninja
- script: sudo apt install -y coreutils ninja-build
snnn marked this conversation as resolved.
Show resolved Hide resolved
displayName: Install coreutils and ninja

- script: |
Expand Down
Loading