MNT: Re-rendered with conda-build 25.4.2, conda-smithy 3.47.2, and conda-forge-pinning 2025.04.28.17.55.25
This commit is contained in:
Generated
+2
@@ -25,3 +25,5 @@
|
|||||||
|
|
||||||
# Rattler-build's artifacts are in `output` when not specifying anything.
|
# Rattler-build's artifacts are in `output` when not specifying anything.
|
||||||
/output
|
/output
|
||||||
|
# Pixi's configuration
|
||||||
|
.pixi
|
||||||
|
|||||||
Generated
+1
-1
@@ -12,7 +12,7 @@ source .scripts/logging_utils.sh
|
|||||||
set -xeo pipefail
|
set -xeo pipefail
|
||||||
|
|
||||||
THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )"
|
THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )"
|
||||||
PROVIDER_DIR="$(basename $THISDIR)"
|
PROVIDER_DIR="$(basename "$THISDIR")"
|
||||||
|
|
||||||
FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )"
|
FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )"
|
||||||
RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe"
|
RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe"
|
||||||
|
|||||||
Generated
+33
-14
@@ -10,6 +10,7 @@ import glob
|
|||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
|
|
||||||
@@ -44,10 +45,19 @@ def run_osx_build(ns):
|
|||||||
subprocess.check_call([script])
|
subprocess.check_call([script])
|
||||||
|
|
||||||
|
|
||||||
|
def run_win_build(ns):
|
||||||
|
script = ".scripts/run_win_build.bat"
|
||||||
|
subprocess.check_call(["cmd", "/D", "/Q", "/C", f"CALL {script}"])
|
||||||
|
|
||||||
|
|
||||||
def verify_config(ns):
|
def verify_config(ns):
|
||||||
|
choices_filter = ns.filter or "*"
|
||||||
valid_configs = {
|
valid_configs = {
|
||||||
os.path.basename(f)[:-5] for f in glob.glob(".ci_support/*.yaml")
|
os.path.basename(f)[:-5]
|
||||||
|
for f in glob.glob(f".ci_support/{choices_filter}.yaml")
|
||||||
}
|
}
|
||||||
|
if choices_filter != "*":
|
||||||
|
print(f"filtering for '{choices_filter}.yaml' configs")
|
||||||
print(f"valid configs are {valid_configs}")
|
print(f"valid configs are {valid_configs}")
|
||||||
if ns.config in valid_configs:
|
if ns.config in valid_configs:
|
||||||
print("Using " + ns.config + " configuration")
|
print("Using " + ns.config + " configuration")
|
||||||
@@ -60,30 +70,37 @@ def verify_config(ns):
|
|||||||
selections = list(enumerate(sorted(valid_configs), 1))
|
selections = list(enumerate(sorted(valid_configs), 1))
|
||||||
for i, c in selections:
|
for i, c in selections:
|
||||||
print(f"{i}. {c}")
|
print(f"{i}. {c}")
|
||||||
s = input("\n> ")
|
try:
|
||||||
|
s = input("\n> ")
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print("\nno option selected, bye!", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
idx = int(s) - 1
|
idx = int(s) - 1
|
||||||
ns.config = selections[idx][1]
|
ns.config = selections[idx][1]
|
||||||
print(f"selected {ns.config}")
|
print(f"selected {ns.config}")
|
||||||
else:
|
else:
|
||||||
raise ValueError("config " + ns.config + " is not valid")
|
raise ValueError("config " + ns.config + " is not valid")
|
||||||
# Remove the following, as implemented
|
if (
|
||||||
if ns.config.startswith("win"):
|
ns.config.startswith("osx")
|
||||||
raise ValueError(
|
and platform.system() == "Darwin"
|
||||||
f"only Linux/macOS configs currently supported, got {ns.config}"
|
and not os.environ.get("OSX_SDK_DIR")
|
||||||
|
):
|
||||||
|
raise RuntimeError(
|
||||||
|
"Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=$PWD/SDKs' "
|
||||||
|
"to download the SDK automatically to '$PWD/SDKs/MacOSX<ver>.sdk'. "
|
||||||
|
"Note: OSX_SDK_DIR must be set to an absolute path. "
|
||||||
|
"Setting this variable implies agreement to the licensing terms of the SDK by Apple."
|
||||||
)
|
)
|
||||||
elif ns.config.startswith("osx"):
|
|
||||||
if "OSX_SDK_DIR" not in os.environ:
|
|
||||||
raise RuntimeError(
|
|
||||||
"Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=$PWD/SDKs' "
|
|
||||||
"to download the SDK automatically to '$PWD/SDKs/MacOSX<ver>.sdk'. "
|
|
||||||
"Note: OSX_SDK_DIR must be set to an absolute path. "
|
|
||||||
"Setting this variable implies agreement to the licensing terms of the SDK by Apple."
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def main(args=None):
|
def main(args=None):
|
||||||
p = ArgumentParser("build-locally")
|
p = ArgumentParser("build-locally")
|
||||||
p.add_argument("config", default=None, nargs="?")
|
p.add_argument("config", default=None, nargs="?")
|
||||||
|
p.add_argument(
|
||||||
|
"--filter",
|
||||||
|
default=None,
|
||||||
|
help="Glob string to filter which build choices are presented in interactive mode.",
|
||||||
|
)
|
||||||
p.add_argument(
|
p.add_argument(
|
||||||
"--debug",
|
"--debug",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
@@ -104,6 +121,8 @@ def main(args=None):
|
|||||||
run_docker_build(ns)
|
run_docker_build(ns)
|
||||||
elif ns.config.startswith("osx"):
|
elif ns.config.startswith("osx"):
|
||||||
run_osx_build(ns)
|
run_osx_build(ns)
|
||||||
|
elif ns.config.startswith("win"):
|
||||||
|
run_win_build(ns)
|
||||||
finally:
|
finally:
|
||||||
recipe_license_file = os.path.join(
|
recipe_license_file = os.path.join(
|
||||||
"recipe", "recipe-scripts-license.txt"
|
"recipe", "recipe-scripts-license.txt"
|
||||||
|
|||||||
Reference in New Issue
Block a user