From 8046cadc983f0604587304fc8b67837b6730260e Mon Sep 17 00:00:00 2001 From: Alex Dibbley Date: Mon, 8 Jul 2024 13:54:54 +0000 Subject: [PATCH 1/2] Update for CUDA 12.5.1 --- recipe/meta.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 24e5f92..74254df 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "libcurand" %} -{% set version = "10.3.6.39" %} +{% set version = "10.3.6.82" %} {% set cuda_version = "12.5" %} {% set platform = "linux-x86_64" %} # [linux64] {% set platform = "linux-ppc64le" %} # [ppc64le] @@ -18,9 +18,9 @@ package: source: url: https://developer.download.nvidia.com/compute/cuda/redist/{{ name }}/{{ platform }}/{{ name }}-{{ platform }}-{{ version }}-archive.{{ extension }} - sha256: 5f1f5ae8519481f985c489b49124e2ddb033d29df005d080da7d7601ae18ce73 # [linux64] - sha256: 79849e85650834447522b2174cf4e28dd72060440ad8ae4f9c3a27ab79de3c4d # [aarch64] - sha256: e98ae538fc93472230506a4297c526ce70f69f6c1ed351cb65e759bb29f34003 # [win] + sha256: af41597788fd30eb5ccae390be5fe0db59b0a3285a8db97de604a75eeaac93f7 # [linux64] + sha256: 35584cad6b5908d69ace5bc223e96cadcc7f2940d71468535503033fcbd9a7f3 # [aarch64] + sha256: 49f1d18d35af5b446b47d81757f822c054058bade9107c4d96e42b06baafaa2c # [win] build: number: 0 From c15a37a7a7c37fc15f17491c5b9e03e58d866d01 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 14:41:31 +0000 Subject: [PATCH 2/2] MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.2, and conda-forge-pinning 2024.07.08.13.08.10 --- .scripts/build_steps.sh | 7 +++++++ .scripts/run_win_build.bat | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index 2f3df6c..97dc8d9 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -69,6 +69,13 @@ else --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 7491838..24ef201 100755 --- a/.scripts/run_win_build.bat +++ b/.scripts/run_win_build.bat @@ -53,6 +53,11 @@ echo Building recipe 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:*/=%"