File: azure-pipelines.yml

package info (click to toggle)
node-vscode-lsp 1.0.0~git20230424.1320922-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,140 kB
  • sloc: javascript: 451; sh: 41; makefile: 23
file content (28 lines) | stat: -rw-r--r-- 491 bytes parent folder | download
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
trigger:
  batch: true
  branches:
    include: [ '*' ]
  tags:
    include: [ 'release/*/*' ]
pr:
  branches:
    include: [ 'main', 'release/*' ]

jobs:
- job: Windows
  pool:
    vmImage: 'windows-latest'
  steps:
  - template: build/azure-pipelines/win32/build.yml

- job: Linux
  pool:
    vmImage: 'ubuntu-latest'
  steps:
  - template: build/azure-pipelines/linux/build.yml

- job: macOS
  pool:
    vmImage: macOS-latest
  steps:
  - template: build/azure-pipelines/darwin/build.yml