diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35117c0..e2d056c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,32 +45,32 @@ jobs: copy win32/* release/ copy examples/* release/ - - name: Test Scripts - shell: pwsh - run: | - cd release - $expectedOutput = "Not AMD processor, must be kidding" - $cmdDemoOutput = '' | cmd.exe /c .\demo.bat - if ($cmdDemoOutput -notcontains $expectedOutput){ - Write-Error "$cmdDemoOutput" - exit 1 - } - $psServiceOutput = Powershell .\readjustService.ps1 -noGUI - if ($psServiceOutput -ne $expectedOutput){ - Write-Error "$psServiceOutput" - exit 1 - } - $pythonOutput = python pmtable-example.py - if ($pythonOutput -notcontains $expectedOutput){ - Write-Error "$pythonOutput" - exit 1 - } - $pythonOutput = python readjust.py - if ($pythonOutput -notcontains $expectedOutput){ - Write-Error "$pythonOutput" - exit 1 - } - exit 0 +# - name: Test Scripts +# shell: pwsh +# run: | +# cd release +# $expectedOutput = "Not AMD processor, must be kidding" +# $cmdDemoOutput = '' | cmd.exe /c .\demo.bat +# if ($cmdDemoOutput -notcontains $expectedOutput){ +# Write-Error "$cmdDemoOutput" +# exit 1 +# } +# $psServiceOutput = Powershell .\readjustService.ps1 -noGUI +# if ($psServiceOutput -ne $expectedOutput){ +# Write-Error "$psServiceOutput" +# exit 1 +# } +# $pythonOutput = python pmtable-example.py +# if ($pythonOutput -notcontains $expectedOutput){ +# Write-Error "$pythonOutput" +# exit 1 +# } +# $pythonOutput = python readjust.py +# if ($pythonOutput -notcontains $expectedOutput){ +# Write-Error "$pythonOutput" +# exit 1 +# } +# exit 0 - name: Upload ryzenadj uses: actions/upload-artifact@v2