| # |
| # 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: e849c68657d88d03235b87da34c740cda3abebd4 |
| GITHUB_RUNNER_VERSION: 2.334.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: e849c68657d88d03235b87da34c740cda3abebd4 |
| ANDROID_CLANG_VERSION: r584948b |
| ANDROID_CLANG_PREBUILTS_COMMIT: 2b062008b0a7be59ad85f012cfeee60f052808f1 |
| ANDROID_SYSROOT_COMMIT: f8b85cc5262c6e5cbc9a92c1bab2b18b32a4c63f |