Last updated: 2024-11-07 21:05:29.657302 File source: link on GitLab
Last updated: 2024-11-07 21:05:29.926640 File source: link on GitLab
This folder contains job definitions for the cicd pipeline that implements the test matrix described in this project's readme.
You need to import this project's cicd/Auto-Devops.gitlab-ci.yml
and define a base image that will server as the default image for building the project:
There are multiple variables that are used to disable specific parts of the pipeline:
For later stages to work, like functional tests, you need to define a build job called Build
.
These are the implemented stages of the pipeline. Please refer to stages for the description and definition of each stage's functions.
This stage contains jobs that control code quality using linters and analysers. Currently we implement Code Climate for general languages and golangci-lint for golang projects.
The golangci-lint specifically supports definition of rules and settings in a file called .golanci.yml
. It also suports toml and json formats. For more information, please refer to the tool's configuration guide.
This stage builds artifacts necessary for further testing and distribution.
Tests are described in the folder tests/
. It contains high level functionality tests for the cicd pipeline that can either be triggered manually or with dummy merge requests, as needed.