forked from poshbotio/PoshBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
29 lines (25 loc) · 949 Bytes
/
appveyor.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
environment:
matrix:
# Server 2016
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
PowerShellEdition: PowerShellCore
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
PowerShellEdition: WindowsPowerShell
# Server 2012 R2
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
PowerShellEdition: PowerShellCore
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
PowerShellEdition: WindowsPowerShell
# Ubuntu
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
PowerShellEdition: PowerShellCore
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1804
PowerShellEdition: PowerShellCore
version: 0.10.1.{build}
skip_commits:
message: /updated readme.*|update readme.*s/
build: off
#Kick off the CI/CD pipeline
test_script:
- ps: if ($env:PowerShellEdition -eq 'WindowsPowerShell') { . .\build.ps1 -Task Test }
- pwsh: if ($env:PowerShellEdition -eq 'PowerShellCore') { . .\build.ps1 -Task Test }