-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathazure-pipelines-osx.yml
executable file
·48 lines (46 loc) · 1.53 KB
/
azure-pipelines-osx.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This file was generated automatically from conda-smithy. To update this configuration,
# update the conda-forge.yml and/or the recipe/meta.yaml.
# -*- mode: yaml -*-
jobs:
- job: osx
pool:
vmImage: macOS-10.15
strategy:
matrix:
osx_64_python3.10.____cpython:
CONFIG: osx_64_python3.10.____cpython
UPLOAD_PACKAGES: 'True'
osx_64_python3.8.____cpython:
CONFIG: osx_64_python3.8.____cpython
UPLOAD_PACKAGES: 'True'
osx_64_python3.9.____cpython:
CONFIG: osx_64_python3.9.____cpython
UPLOAD_PACKAGES: 'True'
osx_arm64_python3.10.____cpython:
CONFIG: osx_arm64_python3.10.____cpython
UPLOAD_PACKAGES: 'True'
osx_arm64_python3.8.____cpython:
CONFIG: osx_arm64_python3.8.____cpython
UPLOAD_PACKAGES: 'True'
osx_arm64_python3.9.____cpython:
CONFIG: osx_arm64_python3.9.____cpython
UPLOAD_PACKAGES: 'True'
timeoutInMinutes: 360
steps:
# TODO: Fast finish on azure pipelines?
- script: |
export CI=azure
export OSX_FORCE_SDK_DOWNLOAD="1"
export GIT_BRANCH=$BUILD_SOURCEBRANCHNAME
export FEEDSTOCK_NAME=$(basename ${BUILD_REPOSITORY_NAME})
if [[ "${BUILD_REASON:-}" == "PullRequest" ]]; then
export IS_PR_BUILD="True"
else
export IS_PR_BUILD="False"
fi
./.scripts/run_osx_build.sh
displayName: Run OSX build
env:
BINSTAR_TOKEN: $(BINSTAR_TOKEN)
FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN)
STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN)