-
Notifications
You must be signed in to change notification settings - Fork 12
131 lines (125 loc) · 5.12 KB
/
msw-unit-tests.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: Windows Build & Unit Tests
on: [push]
env:
testrunner: 'TETestRunner'
outfile: 'te-junit.xml'
jobs:
build:
name: unit-tests
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- run: git config --global core.autocrlf input
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1.3
with:
vs-prerelease: true
- name: Build & run tests
run: |
cd ..
git clone https://github.com/catchorg/Catch2.git
cd ${{ github.workspace }}/tests
cmake ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
./${{ env.testrunner }} --reporter JUnit::out=${{ env.outfile }}
cat ${{ env.outfile }}
$FileContent = Get-Content ${{ env.outfile }}
$errors = (Select-String -InputObject $FileContent -Pattern 'errors="([0-9]+)"' | % { $($_.matches.groups[1]) } )
$failures = (Select-String -InputObject $FileContent -Pattern 'failures="([0-9]+)"' | % { $($_.matches.groups[1]) } )
if ($errors.Value -gt 0)
{
Write-Host "Error count is: " + $errors.Value
exit 1
}
if ($failures.Value -gt 0)
{
Write-Host "Failure count is: " + $failures.Value
exit 1
}
cd ..
cd ..
cmake --build . --target clean
cmake -DTE_POW_FROM_RIGHT = 1 ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
./${{ env.testrunner }} --reporter JUnit::out=${{ env.outfile }}
cat ${{ env.outfile }}
$FileContent = Get-Content ${{ env.outfile }}
$errors = (Select-String -InputObject $FileContent -Pattern 'errors="([0-9]+)"' | % { $($_.matches.groups[1]) } )
$failures = (Select-String -InputObject $FileContent -Pattern 'failures="([0-9]+)"' | % { $($_.matches.groups[1]) } )
if ($errors.Value -gt 0)
{
Write-Host "Error count is: " + $errors.Value
exit 1
}
if ($failures.Value -gt 0)
{
Write-Host "Failure count is: " + $failures.Value
exit 1
}
cd ..
cd ..
cmake --build . --target clean
cmake -DTE_FLOAT = 1 ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
./${{ env.testrunner }} --reporter JUnit::out=${{ env.outfile }}
cat ${{ env.outfile }}
$FileContent = Get-Content ${{ env.outfile }}
$errors = (Select-String -InputObject $FileContent -Pattern 'errors="([0-9]+)"' | % { $($_.matches.groups[1]) } )
$failures = (Select-String -InputObject $FileContent -Pattern 'failures="([0-9]+)"' | % { $($_.matches.groups[1]) } )
if ($errors.Value -gt 0)
{
Write-Host "Error count is: " + $errors.Value
exit 1
}
if ($failures.Value -gt 0)
{
Write-Host "Failure count is: " + $failures.Value
exit 1
}
cd ..
cd ..
cmake --build . --target clean
cmake -DTE_LONG_DOUBLE = 1 ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
./${{ env.testrunner }} --reporter JUnit::out=${{ env.outfile }}
cat ${{ env.outfile }}
$FileContent = Get-Content ${{ env.outfile }}
$errors = (Select-String -InputObject $FileContent -Pattern 'errors="([0-9]+)"' | % { $($_.matches.groups[1]) } )
$failures = (Select-String -InputObject $FileContent -Pattern 'failures="([0-9]+)"' | % { $($_.matches.groups[1]) } )
if ($errors.Value -gt 0)
{
Write-Host "Error count is: " + $errors.Value
exit 1
}
if ($failures.Value -gt 0)
{
Write-Host "Failure count is: " + $failures.Value
exit 1
}
cd ..
cd ..
cmake --build . --target clean
cmake -DTE_BITWISE_OPERATORS = 1 ./
msbuild ${{ env.testrunner }}.sln
cd bin\Debug
./${{ env.testrunner }} --reporter JUnit::out=${{ env.outfile }}
cat ${{ env.outfile }}
$FileContent = Get-Content ${{ env.outfile }}
$errors = (Select-String -InputObject $FileContent -Pattern 'errors="([0-9]+)"' | % { $($_.matches.groups[1]) } )
$failures = (Select-String -InputObject $FileContent -Pattern 'failures="([0-9]+)"' | % { $($_.matches.groups[1]) } )
if ($errors.Value -gt 0)
{
Write-Host "Error count is: " + $errors.Value
exit 1
}
if ($failures.Value -gt 0)
{
Write-Host "Failure count is: " + $failures.Value
exit 1
}