forked from ni/nimi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
60 lines (54 loc) · 1.38 KB
/
azure-pipelines.yml
File metadata and controls
60 lines (54 loc) · 1.38 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
# nimi-bot pipeline for running all system tests as part of Continuous Integration.
parameters:
- name: module_names
type: object
default: # Order of the modules is based on test execution time, longest first.
- nidigital
- nitclk
- nifgen
- nidcpower
- nidmm
- niscope
- nimodinst
- nise
- niswitch
# A pipeline with no CI trigger.
trigger: none
pr:
branches:
include:
- master
- releases/*
paths:
exclude:
- CHANGELOG.md
- CONTRIBUTING.md
- .gitattributes
- LICENSE
- VERSION
drafts: false
stages:
- stage: system_tests_win64
dependsOn: []
pool:
name: nimi-bot
demands:
- nimi-bot -equals True
- platform -equals win64 # Run system tests using 64-bit Python interpreter on a 64-bit Windows 10 system.
jobs:
- ${{each module_name in parameters.module_names}}:
- template: run_module_system_tests.yml
parameters:
module_name: ${{module_name}}
- stage: system_tests_win32
dependsOn: []
pool:
name: nimi-bot
demands:
- nimi-bot -equals True
- platform -equals win32 # Run system tests using 32-bit Python interpreter on a 64-bit Windows 10 system.
jobs:
- ${{each module_name in parameters.module_names}}:
- template: run_module_system_tests.yml
parameters:
module_name: ${{module_name}}