[libcxx-commits] [libcxx] dc9ed44 - [libc++][Android] Enable Android testing in BuildKite CI (#69275)
via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Oct 23 14:24:37 PDT 2023
Author: Ryan Prichard
Date: 2023-10-23T14:24:33-07:00
New Revision: dc9ed440b5c65a2011f3eb56124bafcfccdf4ac9
URL: https://github.com/llvm/llvm-project/commit/dc9ed440b5c65a2011f3eb56124bafcfccdf4ac9
DIFF: https://github.com/llvm/llvm-project/commit/dc9ed440b5c65a2011f3eb56124bafcfccdf4ac9.diff
LOG: [libc++][Android] Enable Android testing in BuildKite CI (#69275)
Enable testing for two NDK configurations:
- android-ndk-21-def-x86
- android-ndk-33-goog-x86_64
Fixes: https://github.com/llvm/llvm-project/issues/69270
Added:
Modified:
libcxx/docs/index.rst
libcxx/utils/ci/buildkite-pipeline.yml
Removed:
################################################################################
diff --git a/libcxx/docs/index.rst b/libcxx/docs/index.rst
index 9c2a83bde3c0f4f..72c80d7dc954a33 100644
--- a/libcxx/docs/index.rst
+++ b/libcxx/docs/index.rst
@@ -130,6 +130,7 @@ Target platform Target architecture Notes
macOS 10.9+ i386, x86_64, arm64 Building the shared library itself requires targetting macOS 10.13+
FreeBSD 12+ i386, x86_64, arm
Linux i386, x86_64, arm, arm64 Only glibc-2.24 and later and no other libc is officially supported
+Android 5.0+ i386, x86_64, arm, arm64
Windows i386, x86_64 Both MSVC and MinGW style environments, ABI in MSVC environments is :doc:`unstable <DesignDocs/ABIVersioning>`
AIX 7.2TL5+ powerpc, powerpc64
=============== ========================= ============================
diff --git a/libcxx/utils/ci/buildkite-pipeline.yml b/libcxx/utils/ci/buildkite-pipeline.yml
index 460c5a8c4301dc4..f195331eac2474d 100644
--- a/libcxx/utils/ci/buildkite-pipeline.yml
+++ b/libcxx/utils/ci/buildkite-pipeline.yml
@@ -1116,3 +1116,35 @@ steps:
- exit_status: -1 # Agent was lost
limit: 2
timeout_in_minutes: 120
+
+ - group: ":android: Android"
+ steps:
+ - label: "Android 5.0, x86 NDK"
+ command: "libcxx/utils/ci/run-buildbot android-ndk-21-def-x86"
+ artifact_paths:
+ - "**/test-results.xml"
+ - "**/*.abilist"
+ agents:
+ queue: "libcxx-builders"
+ os: "android"
+ retry:
+ automatic:
+ - exit_status: -1 # Agent was lost
+ limit: 2
+ soft_fail: true
+ timeout_in_minutes: 120
+
+ - label: "Android 13, x86_64 NDK"
+ command: "libcxx/utils/ci/run-buildbot android-ndk-33-goog-x86_64"
+ artifact_paths:
+ - "**/test-results.xml"
+ - "**/*.abilist"
+ agents:
+ queue: "libcxx-builders"
+ os: "android"
+ retry:
+ automatic:
+ - exit_status: -1 # Agent was lost
+ limit: 2
+ soft_fail: true
+ timeout_in_minutes: 120
More information about the libcxx-commits
mailing list