mirror of
https://github.com/apache/superset.git
synced 2026-08-31 12:31:19 +00:00
49 lines
2.3 KiB
Bash
Executable File
49 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# Computes the `--extra-flags` value passed to `supersetbot docker` for a
|
|
# given build preset. Factored out of .github/workflows/docker.yml so the
|
|
# PY_VER override logic below can be exercised by an always-on CI check
|
|
# (docker.yml's docker-build job only runs when the change detector's
|
|
# docker/python/frontend outputs are true, and the PR build matrix never
|
|
# includes py311/py312 at all, so a regression here would otherwise go
|
|
# unnoticed until the fix actually runs on master) without duplicating -
|
|
# and risking drift from - the logic used by the real build step.
|
|
#
|
|
# supersetbot's "py311"/"py312" presets pin their own --build-arg PY_VER,
|
|
# which lands ahead of --extra-flags on the assembled buildx command line;
|
|
# docker/buildx keeps the last value for a repeated --build-arg key, so
|
|
# appending PY_VER here would override supersetbot's pin and silently make
|
|
# "py311"/"py312" build the exact same image as "lean". Every other preset
|
|
# gets the override so its build lands on the Dockerfile's own supported
|
|
# Python version.
|
|
#
|
|
# Usage: docker-build-extra-flags.sh <build_preset> <image_tag>
|
|
|
|
set -euo pipefail
|
|
|
|
BUILD_PRESET="${1:?usage: docker-build-extra-flags.sh <build_preset> <image_tag>}"
|
|
IMAGE_TAG="${2:?usage: docker-build-extra-flags.sh <build_preset> <image_tag>}"
|
|
|
|
EXTRA_FLAGS="--build-arg INCLUDE_CHROMIUM=false --tag $IMAGE_TAG"
|
|
if [ "$BUILD_PRESET" != "py311" ] && [ "$BUILD_PRESET" != "py312" ]; then
|
|
EXTRA_FLAGS="--build-arg PY_VER=3.11.14-slim-trixie $EXTRA_FLAGS"
|
|
fi
|
|
|
|
echo "$EXTRA_FLAGS"
|