Skip to content
Snippets Groups Projects
Commit 74e4049d authored by Update Bot's avatar Update Bot
Browse files

Re-add stages

GitLab docs explicitly say `needs` does not require stages but GitLab actual behavior is:

```
Found errors in your .gitlab-ci.yml:

    update-staging job needs system-tests job, but system-tests is not in any previous stage
    update-staging job needs morph-build-staging job, but morph-build-staging is not in any previous stage

```
parent 6ddb6756
No related branches found
No related tags found
2 merge requests!319update production,!317Re-add stages
......@@ -18,12 +18,17 @@
- when: "never"
stages:
- "build"
- "deploy"
default:
# Guide the choice of an appropriate runner for all these jobs.
# https://docs.gitlab.com/ee/ci/runners/#runner-runs-only-tagged-jobs
tags:
- "nixos"
- "shell"
stage: "build"
variables:
# https://docs.gitlab.com/ee/ci/runners/configure_runners.html#job-stages-attempts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment