forked from statsmodels/statsmodels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
37 lines (31 loc) · 887 Bytes
/
azure-pipelines.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
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops#passing-parameters
trigger:
- main
schedules:
- cron: "0 6 * * 1" # Each Monday at 06:00 UTC
displayName: Weekly scheduled run
branches:
include: [main, maintenance/0.13.x]
always: true
variables:
MKL_NUM_THREADS: 1
NUMEXPR_NUM_THREADS: 1
OMP_NUM_THREADS: 1
VML_NUM_THREADS: 1
OPENBLAS_NUM_THREADS: 1
PYTHONHASHSEED: 0 # Ensure tests are correctly gathered by xdist
SETUPTOOLS_USE_DISTUTILS: "stdlib"
USE_MATPLOTLIB: true
jobs:
- template: tools/ci/azure/azure_template_windows.yml
parameters:
name: Windows
vmImage: windows-latest
- template: tools/ci/azure/azure_template_posix.yml
parameters:
name: macOS
vmImage: macOS-latest
- template: tools/ci/azure/azure_template_posix.yml
parameters:
name: Linux
vmImage: ubuntu-latest