-
Notifications
You must be signed in to change notification settings - Fork 12
/
azure-pipelines.yml
41 lines (36 loc) · 1.2 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
resources:
repositories:
- repository: ci-perl-helpers
type: github
name: houseabsolute/ci-perl-helpers
endpoint: houseabsolute
stages:
- template: templates/helpers/build.yml@ci-perl-helpers
parameters:
debug: true
- template: templates/helpers/linux.yml@ci-perl-helpers
parameters:
coverage: codecov
debug: true
test_xt: true
use_default_perls: true
apt:
- locales
pre_test_steps:
# This is needed for the spelling test to pass. If run with LANG=C
# (the default absent an explicit setting), the test seems to read the
# <DATA> handle or the pod files incorrectly.
- bash: |
sudo locale-gen en_US.UTF-8
echo "##vso[task.setvariable variable=LANG]en_US.UTF-8"
echo "##vso[task.setvariable variable=LANGUAGE]en"
echo "##vso[task.setvariable variable=LC_ALL]en_US.UTF-8"
displayName: Set locale env vars
- template: templates/helpers/macos.yml@ci-perl-helpers
parameters:
debug: true
use_default_perls: true
- template: templates/helpers/windows.yml@ci-perl-helpers
parameters:
debug: true
use_default_perls: true