Skip to content
Snippets Groups Projects
Commit 300c6abe authored by Todor Kondić's avatar Todor Kondić
Browse files

.gitlab-ci: Update docs.

parent fba17a7b
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2023 by University of Luxembourg
# Summary
#
# This is a file which describes CI/CD pipeline for Shinyscreen. The
# main goal is to test Shinyscreen and create appropriately versioned
# Docker images on whichever container registry is used.
#
# There are three stages: _build_, _test_ and _release_. Jobs
# associated with build and test stages should run an all
# commits. Release jobs run exclusively on master branch and only for
# tagged commits.
#
# Job tags _docker_ and _$RUNNER_TAG_ serve to inform GitLab which
# gitlab-runners (programs which perform jobs) are suitable to pick up
# the pipeline.
#
# The pipeline itself is following the paradigm of docker-in-docker
# build. In short, it helps having reproducible builds and
# tests. There is more documentation available online.
image: docker:23.0.1 image: docker:23.0.1
services: services:
- docker:23.0.1-dind - docker:23.0.1-dind
......
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