1version: '3.7' 2 3x-versions: &compiler_versions 4 GCC_LATEST_VERSION: 13 5 LLVM_HEAD_VERSION: 19 6 7services: 8 buildkite-builder: 9 image: ghcr.io/libcxx/buildkite-builder:${TAG:-latest} 10 build: 11 context: . 12 dockerfile: Dockerfile 13 target: buildkite-builder 14 args: 15 BASE_IMAGE: ubuntu:jammy 16 <<: *compiler_versions 17 actions-builder: 18 image: ghcr.io/libcxx/actions-builder:${TAG:-latest} 19 build: 20 context: . 21 dockerfile: Dockerfile 22 target: actions-builder 23 args: 24 BASE_IMAGE: ghcr.io/actions/actions-runner:2.314.1 25 <<: *compiler_versions 26 android-buildkite-builder: 27 image: ghcr.io/libcxx/android-buildkite-builder:${TAG:-latest} 28 build: 29 context: . 30 dockerfile: Dockerfile 31 target: android-buildkite-builder 32 args: 33 BASE_IMAGE: ubuntu:jammy 34 ANDROID_CLANG_VERSION: r498229b 35 ANDROID_CLANG_PREBUILTS_COMMIT: 5186d132c99aa75dc25207c392e3ea5b93d0107e 36 ANDROID_SYSROOT_BID: 10957860 37 <<: *compiler_versions 38 39