Skip to content

Update docs CI to match job naming convention

Kenneth Moreland requested to merge kmorel/vtk-m:ci-docs-stage into master

The naming convention for CI jobs is generally stage:name where the stage matches the GitLab stage and the name is a description. However, the documentation jobs broke this convention by being called docs:type where type is continuous, latest, or master. This breaks the convention because docs is not a stage and type does not really describe the build. This fouls up things like reproduce_ci_env.py that expect the first part of the name to be the same as the stage.

This changes the names to build:docs-continuous, build:docs-latest, and build:docs-master. This follows the convention of matching the names with the stage.

Merge request reports