|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +# Empty prefix means that the Docker Compose configuration will use named |
| 19 | +# volumes which potentially improves the performance on Docker for macOS and |
| 20 | +# Docker for Windows, it also prevents the contamination of the source |
| 21 | +# directory. |
| 22 | +# A non-empty prefix means that directories from the host are bind-mounted |
| 23 | +# into the container, it should be set to ".docker/" on GitHub Actions to keep |
| 24 | +# the cache plugin functional. |
| 25 | +DOCKER_VOLUME_PREFIX= |
| 26 | + |
| 27 | +# turn on inline build cache, this is a docker buildx feature documented |
| 28 | +# at https://github.com/docker/buildx#--cache-tonametypetypekeyvalue |
| 29 | +BUILDKIT_INLINE_CACHE=1 |
| 30 | +COMPOSE_DOCKER_CLI_BUILD=1 |
| 31 | +DOCKER_BUILDKIT=1 |
| 32 | + |
| 33 | +# different architecture notations |
| 34 | +ARCH=amd64 |
| 35 | + |
| 36 | +# Default repository to pull and push images from |
| 37 | +REPO=ghcr.io/apache/arrow-swift-dev |
| 38 | + |
| 39 | +# Default versions for platforms |
| 40 | +UBUNTU_CODE_NAME=noble |
| 41 | + |
| 42 | +# Default versions for various dependencies |
| 43 | +SWIFT=5.10 |
0 commit comments