From 023d16eaa94b14379b69c73b1c4b081fceb7aa76 Mon Sep 17 00:00:00 2001 From: "Billy K. Poon" Date: Tue, 17 Sep 2024 06:39:39 -0700 Subject: [PATCH] MNT: Re-rendered with conda-build 24.7.1, conda-smithy 3.39.1, and conda-forge-pinning 2024.09.17.12.57.55 --- .azure-pipelines/azure-pipelines-linux.yml | 2 -- .azure-pipelines/azure-pipelines-osx.yml | 2 -- .azure-pipelines/azure-pipelines-win.yml | 2 -- .scripts/build_steps.sh | 7 +------ .scripts/run_docker_build.sh | 2 -- .scripts/run_osx_build.sh | 7 +------ .scripts/run_win_build.bat | 6 +----- 7 files changed, 3 insertions(+), 25 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index ad1b2227..987ffcb2 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -67,8 +67,6 @@ jobs: displayName: Run docker build env: BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) - script: | export CI=azure export CI_RUN_ID=$(build.BuildNumber).$(system.JobAttempt) diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index 3558f9c6..465041e1 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -75,8 +75,6 @@ jobs: displayName: Run OSX build env: BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) - script: | export CI=azure export CI_RUN_ID=$(build.BuildNumber).$(system.JobAttempt) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 667b0a65..194bb5c6 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -70,8 +70,6 @@ jobs: UPLOAD_TEMP: $(UPLOAD_TEMP) UPLOAD_ON_BRANCH: main BINSTAR_TOKEN: $(BINSTAR_TOKEN) - FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) - STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) - script: | set CI=azure set CI_RUN_ID=$(build.BuildNumber).$(system.JobAttempt) diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index c3ed40c5..d5206c58 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -92,16 +92,11 @@ else 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}" - - ( endgroup "Validating outputs" ) 2> /dev/null ( startgroup "Uploading packages" ) 2> /dev/null if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" + upload_package "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" fi ( endgroup "Uploading packages" ) 2> /dev/null diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh index 00f377a8..a16e7e79 100755 --- a/.scripts/run_docker_build.sh +++ b/.scripts/run_docker_build.sh @@ -101,8 +101,6 @@ docker run ${DOCKER_RUN_ARGS} \ -e remote_url \ -e sha \ -e BINSTAR_TOKEN \ - -e FEEDSTOCK_TOKEN \ - -e STAGING_BINSTAR_TOKEN \ "${DOCKER_IMAGE}" \ bash \ "/home/conda/feedstock_root/${PROVIDER_DIR}/build_steps.sh" diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh index 420f051c..b9cecc2d 100755 --- a/.scripts/run_osx_build.sh +++ b/.scripts/run_osx_build.sh @@ -92,16 +92,11 @@ else 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}" - - ( endgroup "Validating outputs" ) 2> /dev/null ( startgroup "Uploading packages" ) 2> /dev/null if [[ "${UPLOAD_PACKAGES}" != "False" ]] && [[ "${IS_PR_BUILD}" == "False" ]]; then - upload_package --validate --feedstock-name="${FEEDSTOCK_NAME}" ./ ./recipe ./.ci_support/${CONFIG}.yaml + upload_package ./ ./recipe ./.ci_support/${CONFIG}.yaml fi ( endgroup "Uploading packages" ) 2> /dev/null diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat index 2879e43e..9dd6b0ac 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -86,17 +86,13 @@ set "UPLOAD_ON_BRANCH=main" :: Note, this needs GIT_BRANCH too :: Validate -call :start_group "Validating outputs" -validate_recipe_outputs "%FEEDSTOCK_NAME%" -if !errorlevel! neq 0 exit /b !errorlevel! -call :end_group if /i "%UPLOAD_PACKAGES%" == "true" ( if /i "%IS_PR_BUILD%" == "false" ( call :start_group "Uploading packages" if not exist "%TEMP%\" md "%TEMP%" set "TMP=%TEMP%" - upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml + upload_package .\ ".\recipe" .ci_support\%CONFIG%.yaml if !errorlevel! neq 0 exit /b !errorlevel! call :end_group )