Compile errors does not fail the job
Hi
It seems that failing to build a binary does not fail the job as show in https://ci.appveyor.com/project/obiltschnig/poco/build/build%20data...
What is missing for making the job failed if there are compile error?
TIA
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
1 Posted by Ilya Finkelshte... on 27 Dec, 2017 08:46 PM
PowerShell script is happy as long as last command is happy. To avoid those failed positives in the future, use either cmd, or check exit code after every command (or only commands which most probably can fail) in PowerShell (something like
if ($lastexitcode -ne 0){ exit $lastexitcode }
).Ilya Finkelshteyn closed this discussion on 25 Aug, 2018 02:25 AM.