-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
63 lines (48 loc) · 1.45 KB
/
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
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
version: 0.0.0+{build}
skip_tags: true
skip_branch_with_pr: true
build:
verbosity: minimal
test: false
environment:
WHISKEY_DISABLE_ERROR_FORMAT: True
matrix:
- job_name: PowerShell 7.2 on Windows
job_group: pwsh
appveyor_build_worker_image: Visual Studio 2022
- job_name: PowerShell 7.1 on macOS
job_group: pwsh
appveyor_build_worker_image: macOS
- job_name: Windows PowerShell 5.1/.NET 4.8
job_group: ps
appveyor_build_worker_image: Visual Studio 2019
- job_name: PowerShell 6.2 on Windows
job_group: pwsh
appveyor_build_worker_image: Visual Studio 2015
- job_name: PowerShell 7.2 on Ubuntu
job_group: pwsh
appveyor_build_worker_image: Ubuntu
- job_name: PowerShell 7.1 on Windows
job_group: pwsh
appveyor_build_worker_image: Visual Studio 2019
artifacts:
- path: .output\*
for:
# Build in Windows PowerShell
- matrix:
only:
- job_group: ps
build_script:
- ps: |
$ProgressPreference = 'SilentlyContinue'
iwr https://raw.githubusercontent.com/webmd-health-services/Prism/main/Scripts/init.ps1 | iex | Format-Table
.\build.ps1
# Build in PowerShell
- matrix:
only:
- job_group: pwsh
build_script:
- pwsh: |
$ProgressPreference = 'SilentlyContinue'
iwr https://raw.githubusercontent.com/webmd-health-services/Prism/main/Scripts/init.ps1 | iex | Format-Table
./build.ps1