From 37b490504e89fe7d6bc2a20778f7712bc2c7b5e6 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Sun, 30 Jun 2024 08:51:08 +0000 Subject: [PATCH] MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.2, and conda-forge-pinning 2024.06.29.20.13.13 --- .azure-pipelines/azure-pipelines-linux.yml | 19 +++++---- .azure-pipelines/azure-pipelines-osx.yml | 13 +++--- .azure-pipelines/azure-pipelines-win.yml | 7 +++- .ci_support/linux_64_r_base4.3.yaml | 6 +++ ...r_base4.2.yaml => linux_64_r_base4.4.yaml} | 8 +++- .ci_support/linux_aarch64_r_base4.3.yaml | 6 +++ ...e4.2.yaml => linux_aarch64_r_base4.4.yaml} | 8 +++- .ci_support/linux_ppc64le_r_base4.3.yaml | 6 +++ ...e4.2.yaml => linux_ppc64le_r_base4.4.yaml} | 8 +++- .ci_support/osx_64_r_base4.3.yaml | 8 +++- ...4_r_base4.2.yaml => osx_64_r_base4.4.yaml} | 10 ++++- .ci_support/osx_arm64_r_base4.3.yaml | 6 +++ ..._base4.2.yaml => osx_arm64_r_base4.4.yaml} | 8 +++- .../{win_64_.yaml => win_64_r_base4.3.yaml} | 14 +++++-- .ci_support/win_64_r_base4.4.yaml | 26 ++++++++++++ .gitattributes | 4 +- .gitignore | 13 +++++- .scripts/build_steps.sh | 19 +++++---- .scripts/run_docker_build.sh | 6 +++ .scripts/run_osx_build.sh | 13 ++++-- .scripts/run_win_build.bat | 9 +++- README.md | 41 +++++++++++-------- azure-pipelines.yml | 4 +- build-locally.py | 5 ++- 24 files changed, 202 insertions(+), 65 deletions(-) rename .ci_support/{linux_64_r_base4.2.yaml => linux_64_r_base4.4.yaml} (83%) rename .ci_support/{linux_aarch64_r_base4.2.yaml => linux_aarch64_r_base4.4.yaml} (84%) rename .ci_support/{linux_ppc64le_r_base4.2.yaml => linux_ppc64le_r_base4.4.yaml} (83%) rename .ci_support/{osx_64_r_base4.2.yaml => osx_64_r_base4.4.yaml} (79%) rename .ci_support/{osx_arm64_r_base4.2.yaml => osx_arm64_r_base4.4.yaml} (81%) rename .ci_support/{win_64_.yaml => win_64_r_base4.3.yaml} (61%) create mode 100644 .ci_support/win_64_r_base4.4.yaml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 289084e..dc54b69 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -8,31 +8,32 @@ jobs: vmImage: ubuntu-latest strategy: matrix: - linux_64_r_base4.2: - CONFIG: linux_64_r_base4.2 - UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_64_r_base4.3: CONFIG: linux_64_r_base4.3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_aarch64_r_base4.2: - CONFIG: linux_aarch64_r_base4.2 + linux_64_r_base4.4: + CONFIG: linux_64_r_base4.4 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_aarch64_r_base4.3: CONFIG: linux_aarch64_r_base4.3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 - linux_ppc64le_r_base4.2: - CONFIG: linux_ppc64le_r_base4.2 + linux_aarch64_r_base4.4: + CONFIG: linux_aarch64_r_base4.4 UPLOAD_PACKAGES: 'True' - DOCKER_IMAGE: quay.io/condaforge/linux-anvil-ppc64le + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 linux_ppc64le_r_base4.3: CONFIG: linux_ppc64le_r_base4.3 UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-ppc64le + linux_ppc64le_r_base4.4: + CONFIG: linux_ppc64le_r_base4.4 + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-ppc64le timeoutInMinutes: 360 + variables: {} steps: # configure qemu binfmt-misc running. This allows us to run docker containers diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 6d352af..8844d99 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -5,22 +5,23 @@ jobs: - job: osx pool: - vmImage: macOS-11 + vmImage: macOS-12 strategy: matrix: - osx_64_r_base4.2: - CONFIG: osx_64_r_base4.2 - UPLOAD_PACKAGES: 'True' osx_64_r_base4.3: CONFIG: osx_64_r_base4.3 UPLOAD_PACKAGES: 'True' - osx_arm64_r_base4.2: - CONFIG: osx_arm64_r_base4.2 + osx_64_r_base4.4: + CONFIG: osx_64_r_base4.4 UPLOAD_PACKAGES: 'True' osx_arm64_r_base4.3: CONFIG: osx_arm64_r_base4.3 UPLOAD_PACKAGES: 'True' + osx_arm64_r_base4.4: + CONFIG: osx_arm64_r_base4.4 + UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 + variables: {} steps: # TODO: Fast finish on azure pipelines? diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index d609fcd..b68455a 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,8 +8,11 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_: - CONFIG: win_64_ + win_64_r_base4.3: + CONFIG: win_64_r_base4.3 + UPLOAD_PACKAGES: 'True' + win_64_r_base4.4: + CONFIG: win_64_r_base4.4 UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_r_base4.3.yaml b/.ci_support/linux_64_r_base4.3.yaml index 811ee52..20cdcf4 100644 --- a/.ci_support/linux_64_r_base4.3.yaml +++ b/.ci_support/linux_64_r_base4.3.yaml @@ -2,6 +2,10 @@ c_compiler: - gcc c_compiler_version: - '12' +c_stdlib: +- sysroot +c_stdlib_version: +- '2.17' cdt_name: - cos7 channel_sources: @@ -27,3 +31,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +- - c_stdlib_version + - cdt_name diff --git a/.ci_support/linux_64_r_base4.2.yaml b/.ci_support/linux_64_r_base4.4.yaml similarity index 83% rename from .ci_support/linux_64_r_base4.2.yaml rename to .ci_support/linux_64_r_base4.4.yaml index 07be018..39d42ef 100644 --- a/.ci_support/linux_64_r_base4.2.yaml +++ b/.ci_support/linux_64_r_base4.4.yaml @@ -2,6 +2,10 @@ c_compiler: - gcc c_compiler_version: - '12' +c_stdlib: +- sysroot +c_stdlib_version: +- '2.17' cdt_name: - cos7 channel_sources: @@ -21,9 +25,11 @@ pin_run_as_build: min_pin: x.x max_pin: x.x r_base: -- '4.2' +- '4.4' target_platform: - linux-64 zip_keys: - - c_compiler_version - cxx_compiler_version +- - c_stdlib_version + - cdt_name diff --git a/.ci_support/linux_aarch64_r_base4.3.yaml b/.ci_support/linux_aarch64_r_base4.3.yaml index 4e82ea1..7514016 100644 --- a/.ci_support/linux_aarch64_r_base4.3.yaml +++ b/.ci_support/linux_aarch64_r_base4.3.yaml @@ -4,6 +4,10 @@ c_compiler: - gcc c_compiler_version: - '12' +c_stdlib: +- sysroot +c_stdlib_version: +- '2.17' cdt_arch: - aarch64 cdt_name: @@ -31,3 +35,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +- - c_stdlib_version + - cdt_name diff --git a/.ci_support/linux_aarch64_r_base4.2.yaml b/.ci_support/linux_aarch64_r_base4.4.yaml similarity index 84% rename from .ci_support/linux_aarch64_r_base4.2.yaml rename to .ci_support/linux_aarch64_r_base4.4.yaml index fba1b15..a4141b3 100644 --- a/.ci_support/linux_aarch64_r_base4.2.yaml +++ b/.ci_support/linux_aarch64_r_base4.4.yaml @@ -4,6 +4,10 @@ c_compiler: - gcc c_compiler_version: - '12' +c_stdlib: +- sysroot +c_stdlib_version: +- '2.17' cdt_arch: - aarch64 cdt_name: @@ -25,9 +29,11 @@ pin_run_as_build: min_pin: x.x max_pin: x.x r_base: -- '4.2' +- '4.4' target_platform: - linux-aarch64 zip_keys: - - c_compiler_version - cxx_compiler_version +- - c_stdlib_version + - cdt_name diff --git a/.ci_support/linux_ppc64le_r_base4.3.yaml b/.ci_support/linux_ppc64le_r_base4.3.yaml index 776024e..eeb952d 100644 --- a/.ci_support/linux_ppc64le_r_base4.3.yaml +++ b/.ci_support/linux_ppc64le_r_base4.3.yaml @@ -2,6 +2,10 @@ c_compiler: - gcc c_compiler_version: - '12' +c_stdlib: +- sysroot +c_stdlib_version: +- '2.17' cdt_name: - cos7 channel_sources: @@ -27,3 +31,5 @@ target_platform: zip_keys: - - c_compiler_version - cxx_compiler_version +- - c_stdlib_version + - cdt_name diff --git a/.ci_support/linux_ppc64le_r_base4.2.yaml b/.ci_support/linux_ppc64le_r_base4.4.yaml similarity index 83% rename from .ci_support/linux_ppc64le_r_base4.2.yaml rename to .ci_support/linux_ppc64le_r_base4.4.yaml index d8595b4..d90907a 100644 --- a/.ci_support/linux_ppc64le_r_base4.2.yaml +++ b/.ci_support/linux_ppc64le_r_base4.4.yaml @@ -2,6 +2,10 @@ c_compiler: - gcc c_compiler_version: - '12' +c_stdlib: +- sysroot +c_stdlib_version: +- '2.17' cdt_name: - cos7 channel_sources: @@ -21,9 +25,11 @@ pin_run_as_build: min_pin: x.x max_pin: x.x r_base: -- '4.2' +- '4.4' target_platform: - linux-ppc64le zip_keys: - - c_compiler_version - cxx_compiler_version +- - c_stdlib_version + - cdt_name diff --git a/.ci_support/osx_64_r_base4.3.yaml b/.ci_support/osx_64_r_base4.3.yaml index a9b4f7f..f96428e 100644 --- a/.ci_support/osx_64_r_base4.3.yaml +++ b/.ci_support/osx_64_r_base4.3.yaml @@ -1,9 +1,15 @@ MACOSX_DEPLOYMENT_TARGET: -- '10.9' +- '10.13' +MACOSX_SDK_VERSION: +- '10.13' c_compiler: - clang c_compiler_version: - '16' +c_stdlib: +- macosx_deployment_target +c_stdlib_version: +- '10.13' channel_sources: - conda-forge channel_targets: diff --git a/.ci_support/osx_64_r_base4.2.yaml b/.ci_support/osx_64_r_base4.4.yaml similarity index 79% rename from .ci_support/osx_64_r_base4.2.yaml rename to .ci_support/osx_64_r_base4.4.yaml index 207736c..03f6f03 100644 --- a/.ci_support/osx_64_r_base4.2.yaml +++ b/.ci_support/osx_64_r_base4.4.yaml @@ -1,9 +1,15 @@ MACOSX_DEPLOYMENT_TARGET: -- '10.9' +- '10.13' +MACOSX_SDK_VERSION: +- '10.13' c_compiler: - clang c_compiler_version: - '16' +c_stdlib: +- macosx_deployment_target +c_stdlib_version: +- '10.13' channel_sources: - conda-forge channel_targets: @@ -21,7 +27,7 @@ pin_run_as_build: min_pin: x.x max_pin: x.x r_base: -- '4.2' +- '4.4' target_platform: - osx-64 zip_keys: diff --git a/.ci_support/osx_arm64_r_base4.3.yaml b/.ci_support/osx_arm64_r_base4.3.yaml index 1fa1d81..a3046f9 100644 --- a/.ci_support/osx_arm64_r_base4.3.yaml +++ b/.ci_support/osx_arm64_r_base4.3.yaml @@ -1,9 +1,15 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: - '16' +c_stdlib: +- macosx_deployment_target +c_stdlib_version: +- '11.0' channel_sources: - conda-forge channel_targets: diff --git a/.ci_support/osx_arm64_r_base4.2.yaml b/.ci_support/osx_arm64_r_base4.4.yaml similarity index 81% rename from .ci_support/osx_arm64_r_base4.2.yaml rename to .ci_support/osx_arm64_r_base4.4.yaml index 3d74575..cde9411 100644 --- a/.ci_support/osx_arm64_r_base4.2.yaml +++ b/.ci_support/osx_arm64_r_base4.4.yaml @@ -1,9 +1,15 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: - '16' +c_stdlib: +- macosx_deployment_target +c_stdlib_version: +- '11.0' channel_sources: - conda-forge channel_targets: @@ -21,7 +27,7 @@ pin_run_as_build: min_pin: x.x max_pin: x.x r_base: -- '4.2' +- '4.4' target_platform: - osx-arm64 zip_keys: diff --git a/.ci_support/win_64_.yaml b/.ci_support/win_64_r_base4.3.yaml similarity index 61% rename from .ci_support/win_64_.yaml rename to .ci_support/win_64_r_base4.3.yaml index 459915c..67843d5 100644 --- a/.ci_support/win_64_.yaml +++ b/.ci_support/win_64_r_base4.3.yaml @@ -5,14 +5,22 @@ channel_targets: cran_mirror: - https://cran.r-project.org m2w64_c_compiler: -- m2w64-toolchain +- gcc +m2w64_c_compiler_version: +- '13' +m2w64_c_stdlib: +- m2w64-sysroot +m2w64_c_stdlib_version: +- '12' m2w64_cxx_compiler: -- m2w64-toolchain +- gxx +m2w64_cxx_compiler_version: +- '13' pin_run_as_build: r-base: min_pin: x.x max_pin: x.x r_base: -- '4.1' +- '4.3' target_platform: - win-64 diff --git a/.ci_support/win_64_r_base4.4.yaml b/.ci_support/win_64_r_base4.4.yaml new file mode 100644 index 0000000..45d508a --- /dev/null +++ b/.ci_support/win_64_r_base4.4.yaml @@ -0,0 +1,26 @@ +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cran_mirror: +- https://cran.r-project.org +m2w64_c_compiler: +- gcc +m2w64_c_compiler_version: +- '13' +m2w64_c_stdlib: +- m2w64-sysroot +m2w64_c_stdlib_version: +- '12' +m2w64_cxx_compiler: +- gxx +m2w64_cxx_compiler_version: +- '13' +pin_run_as_build: + r-base: + min_pin: x.x + max_pin: x.x +r_base: +- '4.4' +target_platform: +- win-64 diff --git a/.gitattributes b/.gitattributes index 7f32763..18f114a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -20,8 +20,8 @@ bld.bat text eol=crlf .travis.yml linguist-generated=true .scripts/* linguist-generated=true .woodpecker.yml linguist-generated=true -LICENSE.txt linguist-generated=true -README.md linguist-generated=true +/LICENSE.txt linguist-generated=true +/README.md linguist-generated=true azure-pipelines.yml linguist-generated=true build-locally.py linguist-generated=true shippable.yml linguist-generated=true diff --git a/.gitignore b/.gitignore index c002910..179afe5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,11 +3,22 @@ # Everything else is managed by the conda-smithy rerender process. # Please do not modify +# Ignore all files and folders in root * !/conda-forge.yml -!/*/ +# Don't ignore any files/folders if the parent folder is 'un-ignored' +# This also avoids warnings when adding an already-checked file with an ignored parent. +!/**/ +# Don't ignore any files/folders recursively in the following folders !/recipe/** !/.ci_support/** +# Since we ignore files/folders recursively, any folders inside +# build_artifacts gets ignored which trips some build systems. +# To avoid that we 'un-ignore' all files/folders recursively +# and only ignore the root build_artifacts folder. +!/build_artifacts/** +/build_artifacts + *.pyc diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index eba1dfd..a5836e8 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -34,9 +34,9 @@ CONDARC export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1 mamba install --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build boa conda-forge-ci-setup=4 + pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build boa conda-forge-ci-setup=4 + pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" # set up the condarc setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" @@ -57,12 +57,6 @@ if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" fi -if [[ "${sha:-}" == "" ]]; then - pushd ${FEEDSTOCK_ROOT} - sha=$(git rev-parse HEAD) - popd -fi - if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" @@ -74,10 +68,17 @@ if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then # Drop into an interactive shell /bin/bash else - conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ + conda-build "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ --suppress-variables ${EXTRA_CB_OPTIONS:-} \ --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" \ --extra-meta flow_run_id="${flow_run_id:-}" remote_url="${remote_url:-}" sha="${sha:-}" + + ( startgroup "Inspecting artifacts" ) 2> /dev/null + + # inspect_artifacts was only added in conda-forge-ci-setup 4.6.0 + command -v inspect_artifacts >/dev/null 2>&1 && inspect_artifacts || echo "inspect_artifacts needs conda-forge-ci-setup >=4.6.0" + + ( endgroup "Inspecting artifacts" ) 2> /dev/null ( startgroup "Validating outputs" ) 2> /dev/null validate_recipe_outputs "${FEEDSTOCK_NAME}" diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh index b70ef01..00f377a 100755 --- a/.scripts/run_docker_build.sh +++ b/.scripts/run_docker_build.sh @@ -21,6 +21,12 @@ if [ -z ${FEEDSTOCK_NAME} ]; then export FEEDSTOCK_NAME=$(basename ${FEEDSTOCK_ROOT}) fi +if [[ "${sha:-}" == "" ]]; then + pushd "${FEEDSTOCK_ROOT}" + sha=$(git rev-parse HEAD) + popd +fi + docker info # In order for the conda-build process in the container to write to the mounted diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh index 9259eb9..ba0c879 100755 --- a/.scripts/run_osx_build.sh +++ b/.scripts/run_osx_build.sh @@ -26,9 +26,9 @@ export CONDA_SOLVER="libmamba" export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1 mamba install --update-specs --quiet --yes --channel conda-forge --strict-channel-priority \ - pip mamba conda-build boa conda-forge-ci-setup=4 + pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - pip mamba conda-build boa conda-forge-ci-setup=4 + pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" @@ -81,10 +81,17 @@ else EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --no-test" fi - conda mambabuild ./recipe -m ./.ci_support/${CONFIG}.yaml \ + conda-build ./recipe -m ./.ci_support/${CONFIG}.yaml \ --suppress-variables ${EXTRA_CB_OPTIONS:-} \ --clobber-file ./.ci_support/clobber_${CONFIG}.yaml \ --extra-meta flow_run_id="$flow_run_id" remote_url="$remote_url" sha="$sha" + + ( startgroup "Inspecting artifacts" ) 2> /dev/null + + # inspect_artifacts was only added in conda-forge-ci-setup 4.6.0 + command -v inspect_artifacts >/dev/null 2>&1 && inspect_artifacts || echo "inspect_artifacts needs conda-forge-ci-setup >=4.6.0" + + ( endgroup "Inspecting artifacts" ) 2> /dev/null ( startgroup "Validating outputs" ) 2> /dev/null validate_recipe_outputs "${FEEDSTOCK_NAME}" diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat index 48734de..65650bf 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -24,7 +24,7 @@ set "CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1" :: Provision the necessary dependencies to build the recipe later echo Installing dependencies -mamba.exe install "python=3.10" pip mamba conda-build boa conda-forge-ci-setup=4 -c conda-forge --strict-channel-priority --yes +mamba.exe install "python=3.10" pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" -c conda-forge --strict-channel-priority --yes if !errorlevel! neq 0 exit /b !errorlevel! :: Set basic configuration @@ -55,9 +55,14 @@ call :end_group :: Build the recipe echo Building recipe -conda.exe mambabuild "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% +conda-build.exe "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% if !errorlevel! neq 0 exit /b !errorlevel! +call :start_group "Inspecting artifacts" +:: inspect_artifacts was only added in conda-forge-ci-setup 4.6.0 +WHERE inspect_artifacts >nul 2>nul && inspect_artifacts || echo "inspect_artifacts needs conda-forge-ci-setup >=4.6.0" +call :end_group + :: Prepare some environment variables for the upload step if /i "%CI%" == "github_actions" ( set "FEEDSTOCK_NAME=%GITHUB_REPOSITORY:*/=%" diff --git a/README.md b/README.md index 320c1c3..cf9e394 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,6 @@ Current build status - - - - + @@ -76,10 +69,10 @@ Current build status - + @@ -90,10 +83,10 @@ Current build status - + @@ -104,10 +97,10 @@ Current build status - + @@ -118,10 +111,24 @@ Current build status - + + + + + + + diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6b346f5..e5306da 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,5 +4,5 @@ jobs: - template: ./.azure-pipelines/azure-pipelines-linux.yml - - template: ./.azure-pipelines/azure-pipelines-win.yml - - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file + - template: ./.azure-pipelines/azure-pipelines-osx.yml + - template: ./.azure-pipelines/azure-pipelines-win.yml \ No newline at end of file diff --git a/build-locally.py b/build-locally.py index 3f4b7a7..e0d408d 100755 --- a/build-locally.py +++ b/build-locally.py @@ -64,8 +64,9 @@ def verify_config(ns): 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=SDKs' " - "to download the SDK automatically to 'SDKs/MacOSX.sdk'. " + "Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=$PWD/SDKs' " + "to download the SDK automatically to '$PWD/SDKs/MacOSX.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." )
VariantStatus
linux_64_r_base4.2 - - variant - -
linux_64_r_base4.3 @@ -62,10 +55,10 @@ Current build status
linux_aarch64_r_base4.2linux_64_r_base4.4 - variant + variant
linux_ppc64le_r_base4.2linux_aarch64_r_base4.4 - variant + variant
osx_64_r_base4.2linux_ppc64le_r_base4.4 - variant + variant
osx_arm64_r_base4.2osx_64_r_base4.4 - variant + variant
win_64osx_arm64_r_base4.4 + + variant + +
win_64_r_base4.3 + + variant + +
win_64_r_base4.4 - variant + variant