28 lines
767 B
YAML
28 lines
767 B
YAML
x-versions: &compiler_versions
|
|
GCC_LATEST_VERSION: 14
|
|
LLVM_HEAD_VERSION: 20
|
|
|
|
services:
|
|
actions-builder:
|
|
image: ghcr.io/llvm/libcxx-linux-builder:${TAG}
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: actions-builder
|
|
args:
|
|
BASE_IMAGE: ghcr.io/actions/actions-runner:2.319.1
|
|
<<: *compiler_versions
|
|
|
|
android-buildkite-builder:
|
|
image: ghcr.io/llvm/libcxx-android-builder:${TAG}
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: android-buildkite-builder
|
|
args:
|
|
BASE_IMAGE: ubuntu:noble
|
|
ANDROID_CLANG_VERSION: r498229b
|
|
ANDROID_CLANG_PREBUILTS_COMMIT: 5186d132c99aa75dc25207c392e3ea5b93d0107e
|
|
ANDROID_SYSROOT_BID: 10957860
|
|
<<: *compiler_versions
|