WebDAV support improvements
This MR adds support for the clean-betas
script, which replaces the ad-hoc solution currently installed on our server.
Merge request reports
Activity
mentioned in commit 1cd9e861
10 10 11 11 # Definition of our build pipeline order 12 12 stages: 13 - cleanup 13 14 - build @andre.anjos I think the best thing is to run cleanup after a successful build of nightlies, not before build.
I also thought to restricting the cleanup to once a week... Running this every night may break a random installation running at the same time.
What do you think, @amohammadi?
Another option is to do (https://docs.gitlab.com/ee/ci/yaml/#when):
when: always
It came to mind, but that would mean the clean-up is only run iff the nightlies succeeds, which may lead to accumulating betas for weeks.
Running clean-ups when nightlies fails breaks our setup untill nightlies is green again. For examples,
bob/docs
stops working, we cannot create a stable beta environment from the channel anymore and ...So I still think it should be run after nightlies is green.