Upgrade Android compiler from r563880 to r584948b because libc++ does not support LLVM 20 anymore
39 lines
1.4 KiB
YAML
39 lines
1.4 KiB
YAML
#
|
|
# This docker compose file allows building the various Docker images we use for
|
|
# libc++'s CI. It encodes the versions of various tools included in these images.
|
|
#
|
|
# Images can be built with:
|
|
#
|
|
# $ docker compose --file libcxx/utils/ci/docker/docker-compose.yml build <image-name>
|
|
#
|
|
|
|
services:
|
|
libcxx-linux-builder-base:
|
|
image: ghcr.io/llvm/libcxx-linux-builder-base:${TAG:-latest}
|
|
build:
|
|
context: ../../../.. # monorepo root
|
|
dockerfile: libcxx/utils/ci/docker/linux-builder-base.dockerfile
|
|
args:
|
|
GCC_HEAD_VERSION: 16
|
|
LLVM_HEAD_VERSION: 23
|
|
|
|
libcxx-linux-builder:
|
|
image: ghcr.io/llvm/libcxx-linux-builder:${TAG:-latest}
|
|
build:
|
|
context: ../../../.. # monorepo root
|
|
dockerfile: libcxx/utils/ci/docker/linux-builder.dockerfile
|
|
args:
|
|
BASE_IMAGE_VERSION: e9437d01e4a95c0752937b9a35121457b5835afa
|
|
GITHUB_RUNNER_VERSION: 2.331.0
|
|
|
|
libcxx-android-builder:
|
|
image: ghcr.io/llvm/libcxx-android-builder:${TAG:-latest}
|
|
build:
|
|
context: ../../../.. # monorepo root
|
|
dockerfile: libcxx/utils/ci/docker/android-builder.dockerfile
|
|
args:
|
|
BASE_IMAGE_VERSION: e9437d01e4a95c0752937b9a35121457b5835afa
|
|
ANDROID_CLANG_VERSION: r584948b
|
|
ANDROID_CLANG_PREBUILTS_COMMIT: 2b062008b0a7be59ad85f012cfeee60f052808f1
|
|
ANDROID_SYSROOT_COMMIT: f8b85cc5262c6e5cbc9a92c1bab2b18b32a4c63f
|