After or before for stages in gitlab ci
I would like to have after or before script for whole stage. For example: I've got stage to run acceptance jobs but to do that I need running application stage best to do it in before_script (i know that I can set services for that but I want to test my full working config to start project and run it on kubernetes) After after stage has end I want to run after_script to kill and delete stage application. Now I can do that with before stage but if stage acceptance fails no another steps will be run. I can not kill app in after script in jobs becouse there may be more testing jobs in progress. Any idea how to compose gitlabci to work like above?
issue