File: azure-pipelines.yml

package info (click to toggle)
libdatetime-locale-perl 1%3A1.41-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 26,068 kB
  • sloc: perl: 286,446; sh: 23; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,230 bytes parent folder | download | duplicates (2)
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
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