-
-
Notifications
You must be signed in to change notification settings - Fork 125
108 lines (101 loc) · 3.03 KB
/
ci.yaml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: BurntToast CI
on:
push:
branches:
- main
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
Win2019-x64-pwsh:
name: Server 2019 - PowerShell - x64
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Perform a Pester test from the command-line
shell: pwsh
run: ./tasks/build.ps1 -Test
Win2019-x86-pwsh:
name: Server 2019 - PowerShell - x86
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Perform a Pester test from the command-line
shell: pwsh
run: |
$Pwsh32 = .github/workflows/pwsh32.ps1
& $Pwsh32 -File ./tasks/build.ps1 -Test
Win2019-x64-winpwsh:
name: Server 2019 - Windows PowerShell - x64
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Perform a Pester test from the command-line
shell: powershell
run: ./tasks/build.ps1 -Test
Win2019-x86-winpwsh:
name: Server 2019 - Windows PowerShell - x86
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Perform a Pester test from the command-line
shell: powershell
# TODO: This could be problematic with hardcoding
run: C:\Windows\syswow64\WindowsPowerShell\v1.0\powershell.exe -File ./tasks/build.ps1 -Test
build-and-oat-module:
name: Build Module and OAT
needs: ["Win2019-x64-pwsh", "Win2019-x64-winpwsh", "Win2019-x86-pwsh", "Win2019-x86-winpwsh"]
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Test Coverage
shell: pwsh
run: |
./tasks/build.ps1 -Test
- name: Compile Module
shell: pwsh
run: ./tasks/build.ps1 -Compile
- name: OAT
shell: pwsh
env:
# Use the compiled module for testing
BURNTTOAST_MODULE_ROOT: './Output/BurntToast/BurntToast.psd1'
run: |
./tasks/build.ps1 -Test
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: test-results
path: "*.xml"
- name: Upload PowerShell Module
if: always()
uses: actions/upload-artifact@v3
with:
name: burnttoast-module
path: "./Output/BurntToast/"
publish-test-results:
name: "Publish Tests Results"
needs: build-and-oat-module
runs-on: ubuntu-latest
if: always()
steps:
- uses: actions/checkout@v3
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
name: test-results
path: artifacts
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: artifacts/**/TestResults.xml
- name: Publish Code Coverage Results to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: artifacts/CoverageResults.xml