Skip to content

Commit

Permalink
Fail test
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Ward committed Jan 27, 2024
1 parent 95bb4e7 commit 305f3fa
Showing 1 changed file with 64 additions and 8 deletions.
72 changes: 64 additions & 8 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,81 @@ jobs:
msbuild /p:Configuration=Release /p:Platform=x86
msbuild /p:Configuration=Release /p:Platform=x64
cd Tests
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Release /p:Platform=x86 $_.FullName}
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Release /p:Platform=x64 $_.FullName}
$x86ExitCodes = Get-ChildItem -Path *.vcxproj | ForEach-Object {
& msbuild /p:Configuration=Release /p:Platform=x86 $_.FullName
$LASTEXITCODE
}
$x64ExitCodes = Get-ChildItem -Path *.vcxproj | ForEach-Object {
& msbuild /p:Configuration=Release /p:Platform=x64 $_.FullName
$LASTEXITCODE
}
if ($x86ExitCodes -contains 1 -or $x64ExitCodes -contains 1) {
Write-Host "Building Release build of tests failed."
exit 1
}
- name: Build Debug
run: |
msbuild /p:Configuration=Debug /p:Platform=x86
msbuild /p:Configuration=Debug /p:Platform=x64
cd Tests
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Debug /p:Platform=x86 $_.FullName}
Get-ChildItem -Path *.vcxproj | ForEach-Object {& msbuild /p:Configuration=Debug /p:Platform=x64 $_.FullName}
$x86ExitCodes = Get-ChildItem -Path *.vcxproj | ForEach-Object {
& msbuild /p:Configuration=Debug /p:Platform=x86 $_.FullName
$LASTEXITCODE
}
$x64ExitCodes = Get-ChildItem -Path *.vcxproj | ForEach-Object {
& msbuild /p:Configuration=Debug /p:Platform=x64 $_.FullName
$LASTEXITCODE
}
if ($x86ExitCodes -contains 1 -or $x64ExitCodes -contains 1) {
Write-Host "Building Debug build of tests failed."
exit 1
}
- name: Test
run: |
cd Tests
Get-ChildItem -Path Win32\Release\*.exe | ForEach-Object {& $_.FullName}
Get-ChildItem -Path x64\Release\*.exe | ForEach-Object {& $_.FullName}
$x86ExitCodes = Get-ChildItem -Path Win32\Release\*.exe | ForEach-Object {
& $_.FullName
if ($LASTEXITCODE -ne 0) {
Write-Host "Executing Release build of tests failed. 2"
exit 1
}
}
$x64ExitCodes = Get-ChildItem -Path x64\Release\*.exe | ForEach-Object {
& $_.FullName
$LASTEXITCODE
}
if ($x86ExitCodes -contains 1 -or $x64ExitCodes -contains 1) {
Write-Host "Executing Release build of tests failed."
exit 1
}
- name: Test Debug
run: |
cd Tests
Get-ChildItem -Path Win32\Debug\*.exe | ForEach-Object {& $_.FullName}
Get-ChildItem -Path x64\Debug\*.exe | ForEach-Object {& $_.FullName}
$x86ExitCodes = Get-ChildItem -Path Win32\Debug\*.exe | ForEach-Object {
& $_.FullName
$LASTEXITCODE
}
$x64ExitCodes = Get-ChildItem -Path x64\Debug\*.exe | ForEach-Object {
& $_.FullName
$LASTEXITCODE
}
if ($x86ExitCodes -contains 1 -or $x64ExitCodes -contains 1) {
Write-Host "Executing Debug build of tests failed."
exit 1
}
- name: Archive Libraries
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 305f3fa

Please sign in to comment.