-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nukeeper task succeeds even with failure #31
Comments
I think should be fixed within NuKeeper itself. It should return a exitcode -1 which causes a task fail |
this looks like an issue how nukeeper handles branches. we stil have this issue and it looks like the repro is:
probably the way Azure DevOps deletes the branch is not compatible with how nukeeper checks if the branch already exists. P.S. and yes, the issue should probably be moved to the nukeeper repo |
ok finally pin pointed the issue. the problem is with the local only branches which nukeeper creates. those won't be deleted and stay there forever. running
adding e.g. a IMHO nukeeper should remove a local-only branch when it already exists |
I solved this by making sure my pipeline starts with a clean repository ( jobs:
- job: NuKeeper
displayName: Update dependencies
continueOnError: "false"
workspace:
clean: resources
steps:
- task: nukeeper.nukeeper.nukeeper.NuKeeper@0
displayName: NuKeeper
inputs:
arguments: '--verbosity detailed'
pool:
name: "Default" However yes, the pipeline is not failing on error. |
the task doesn't report a failure or warning even when it failed. at least it should report this as a warning.
The text was updated successfully, but these errors were encountered: