This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
70 lines (59 loc) · 1.56 KB
/
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
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
trigger:
batch: "true"
branches:
include: [master, test-*]
tags:
include: ["*"]
jobs:
- template: jobs/python-tests.yml
parameters:
coverage: false
toxenvs: [ py35, py36, py37, py38, py39, py310, pypy3 ]
- template: jobs/python-tests.yml
parameters:
os: windows
coverage: false
toxenvs: [ py35, py36, py37, py38, py39, pypy3 ]
- template: jobs/python-tests.yml
parameters:
os: macos
coverage: false
toxenvs: [ py35, py36, py37, py38, py39, pypy3 ]
- template: jobs/pre-commit.yml
- template: jobs/sphinx-docs.yml
- template: jobs/npm-build.yml
parameters:
artifactName: test-artifact
artifactPath: testdir
- template: jobs/npm-build.yml
parameters:
artifactName: test-artifact-yarn
artifactPath: testdir
namePostfix: _yarn
- template: jobs/sync-artifact-to-S3.yml
parameters:
artifactName: test-artifact
bucketPath: azure-pipelines-test-bucket
dependsOn: npm_build
condition: succeeded()
- template: jobs/go-tests.yml
parameters:
preTest:
- bash: cp testing-go/* .
displayName: Hack to make coverage work
goVersions:
- "1.13"
- "1.14"
- "1.15"
- template: jobs/go-tests.yml
parameters:
os: windows
preTest:
- bash: cp testing-go/* .
displayName: Hack to make coverage work
- template: jobs/go-tests.yml
parameters:
os: osx
preTest:
- bash: cp testing-go/* .
displayName: Hack to make coverage work