blob: 74df3e4949b2ffffc434ab2be2c8e93c82e0234d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#
# 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: 22
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: 825943e06f840710177e5514c4f61c9e73660c44
GITHUB_RUNNER_VERSION: 2.329.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: 825943e06f840710177e5514c4f61c9e73660c44
ANDROID_CLANG_VERSION: r563880
ANDROID_CLANG_PREBUILTS_COMMIT: 6ae4184bb8706f9731569b9a0a82be3fcdcb951c
ANDROID_SYSROOT_COMMIT: f8b85cc5262c6e5cbc9a92c1bab2b18b32a4c63f
|