brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · 74df3e4 Raw
39 lines · yaml
1#2# This docker compose file allows building the various Docker images we use for3# libc++'s CI. It encodes the versions of various tools included in these images.4#5# Images can be built with:6#7#   $ docker compose --file libcxx/utils/ci/docker/docker-compose.yml build <image-name>8#9 10services:11  libcxx-linux-builder-base:12    image: ghcr.io/llvm/libcxx-linux-builder-base:${TAG:-latest}13    build:14      context: ../../../.. # monorepo root15      dockerfile: libcxx/utils/ci/docker/linux-builder-base.dockerfile16      args:17        GCC_HEAD_VERSION: 1618        LLVM_HEAD_VERSION: 2219 20  libcxx-linux-builder:21    image: ghcr.io/llvm/libcxx-linux-builder:${TAG:-latest}22    build:23      context: ../../../.. # monorepo root24      dockerfile: libcxx/utils/ci/docker/linux-builder.dockerfile25      args:26        BASE_IMAGE_VERSION: 825943e06f840710177e5514c4f61c9e73660c4427        GITHUB_RUNNER_VERSION: 2.329.028 29  libcxx-android-builder:30    image: ghcr.io/llvm/libcxx-android-builder:${TAG:-latest}31    build:32      context: ../../../.. # monorepo root33      dockerfile: libcxx/utils/ci/docker/android-builder.dockerfile34      args:35        BASE_IMAGE_VERSION: 825943e06f840710177e5514c4f61c9e73660c4436        ANDROID_CLANG_VERSION: r56388037        ANDROID_CLANG_PREBUILTS_COMMIT: 6ae4184bb8706f9731569b9a0a82be3fcdcb951c38        ANDROID_SYSROOT_COMMIT: f8b85cc5262c6e5cbc9a92c1bab2b18b32a4c63f39