Skip to content

Commit

Permalink
Merge branch 'main' into add-robotframework-appiumlibrary
Browse files Browse the repository at this point in the history
  • Loading branch information
nisharai1 authored Jan 27, 2025
2 parents 0685756 + 071ba21 commit 16aa38c
Show file tree
Hide file tree
Showing 49 changed files with 1,647 additions and 434 deletions.
22 changes: 11 additions & 11 deletions .azure-pipelines/azure-pipelines-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
export CI=azure
export CONFIG=linux64
export DOCKER_IMAGE=quay.io/condaforge/linux-anvil-cos7-x86_64
export DOCKER_IMAGE=quay.io/condaforge/linux-anvil-x86_64:alma9
export AZURE=True
.scripts/run_docker_build.sh
Expand All @@ -54,7 +54,7 @@ jobs:
- publish: build_artifacts/noarch/
artifact: conda_pkgs_noarch

- job: linux_64_cuda_112
- job: linux_64_cuda_118
dependsOn: linux_64
condition: and(not(eq(variables['Build.SourceBranch'], 'refs/heads/main')), eq(dependencies.linux_64.outputs['linux_64_build.NEED_CUDA'], '1'))
pool:
Expand Down Expand Up @@ -89,16 +89,16 @@ jobs:
mkdir -p build_artifacts/linux-64/
export CI=azure
export CONFIG=linux64_cuda112
export DOCKER_IMAGE=quay.io/condaforge/linux-anvil-cuda:11.2
export CONFIG=linux64_cuda118
export DOCKER_IMAGE=quay.io/condaforge/linux-anvil-x86_64-cuda11.8:ubi8
export AZURE=True
.scripts/run_docker_build.sh
displayName: Run docker build for CUDA 11.2
displayName: Run docker build for CUDA 11.8
- publish: build_artifacts/linux-64/
artifact: conda_pkgs_linux_64_cuda112
artifact: conda_pkgs_linux_64_cuda118

- job: linux_64_cuda_118
- job: linux_64_cuda_120
dependsOn: linux_64
condition: and(not(eq(variables['Build.SourceBranch'], 'refs/heads/main')), eq(dependencies.linux_64.outputs['linux_64_build.NEED_CUDA'], '1'))
pool:
Expand Down Expand Up @@ -133,11 +133,11 @@ jobs:
mkdir -p build_artifacts/linux-64/
export CI=azure
export CONFIG=linux64_cuda118
export DOCKER_IMAGE=quay.io/condaforge/linux-anvil-cuda:11.8
export CONFIG=linux64_cuda120
export DOCKER_IMAGE=quay.io/condaforge/linux-anvil-x86_64:alma9
export AZURE=True
.scripts/run_docker_build.sh
displayName: Run docker build for CUDA 11.8
displayName: Run docker build for CUDA 12.0
- publish: build_artifacts/linux-64/
artifact: conda_pkgs_linux_64_cuda118
artifact: conda_pkgs_linux_64_cuda120
8 changes: 5 additions & 3 deletions .azure-pipelines/azure-pipelines-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
- job: osx
condition: not(eq(variables['Build.SourceBranch'], 'refs/heads/main'))
pool:
vmImage: macOS-11
vmImage: macOS-13
strategy:
matrix:
osx_64:
Expand All @@ -16,9 +16,11 @@ jobs:

steps:
- script: |
export CI=azure
./.scripts/run_osx_build.sh
displayName: Run OSX build
env:
CI: azure
CONDA_BLD_PATH: /Users/runner/bld
- publish: /Users/runner/Miniforge3/conda-bld/osx-64/
- publish: /Users/runner/bld/osx-64/
artifact: conda_pkgs_osx
20 changes: 3 additions & 17 deletions .azure-pipelines/azure-pipelines-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,13 @@ jobs:
CONFIG: win64
timeoutInMinutes: 360
steps:
- task: PythonScript@0
displayName: 'Download Miniforge'
inputs:
scriptSource: inline
script: |
import urllib.request
url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe'
path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe"
urllib.request.urlretrieve(url, path)
- script: |
start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge
displayName: Install Miniforge
- powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts"
displayName: Add conda to PATH

- script: |
call .scripts\run_win_build.bat
displayName: Build recipes
env:
CI: azure
CONDA_BLD_PATH: C:\bld
CONDA_BLD_PATH: D:\bld
MINIFORGE_HOME: D:\Miniforge
- publish: C:\\bld\\win-64\\
- publish: D:\\bld\\win-64\\
artifact: conda_pkgs_win
Loading

0 comments on commit 16aa38c

Please sign in to comment.