-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
84 lines (66 loc) · 1.74 KB
/
azure-pipelines.yml
File metadata and controls
84 lines (66 loc) · 1.74 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Azure pipeline for PyLops
# Only build the master branch, tags, and PRs (on by default) to avoid building random
# branches in the repository until a PR is opened.
trigger:
branches:
include:
- master
- dev
- refs/tags/*
jobs:
# Mac
########################################################################################
- job:
displayName: 'Mac'
pool:
vmImage: 'macOS-15-arm64'
variables:
NUMBA_NUM_THREADS: 1
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.11'
architecture: 'arm64'
- script: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "##vso[task.prependpath]$HOME/.cargo/bin"
displayName: 'Install uv'
- script: |
uv sync --locked \
--extra advanced \
--extra stat \
--extra deep \
--all-groups
displayName: 'Install dependencies andn pylops'
- script: |
uv run pytest --color=yes pytests/
condition: succeededOrFailed()
displayName: 'Run tests'
# Linux
########################################################################################
- job:
displayName: 'Linux'
pool:
vmImage: 'ubuntu-latest'
variables:
NUMBA_NUM_THREADS: 1
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.11'
architecture: 'x64'
- script: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "##vso[task.prependpath]$HOME/.cargo/bin"
displayName: 'Install uv'
- script: |
uv sync --locked \
--extra advanced \
--extra stat \
--extra deep \
--all-groups
displayName: 'Install dependencies andn pylops'
- script: |
uv run pytest --color=yes pytests/
condition: succeededOrFailed()
displayName: 'Run tests'