Update manual's LaTaX template for Pandoc 3.1.7 #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
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 | |
} |