1 # Declare and sequence the stages to which jobs may be assigned.
2 # The pipeline is organized into stages so that if early stages fail
3 # the later ones are not run.
5 # Initial test build for checking simple compilation and getting regressiontest repo
7 # Configuration for building and testing
9 # Build GROMACS in multiple configurations
11 # Unit test each configuration, perhaps in multiple ways
13 # Generate documentation files
15 # Check documentation from source code for errors
17 # Linting, docs, static analysis, coverage, code analysis...
19 # Nightly work to configure builds
23 # Nightly deploy stage
25 # Release work for packaging code
27 # Release checksum verification
29 # Configure code for release builds
31 # Release work for packaging code
33 # Tests for release code
35 # Prepare for deploying artifacts
36 - release-prepare-deploy
37 # Deploy stage for release builds
41 # Mix-in helper job definitions of general utility.
42 - local: '/admin/gitlab-ci/global.gitlab-ci.yml'
43 - local: '/admin/gitlab-ci/rules.gitlab-ci.yml'
44 # gmxapi Python package.
45 - local: '/admin/gitlab-ci/python-gmxapi01.gitlab-ci.yml'
46 - local: '/admin/gitlab-ci/python-gmxapi02.gitlab-ci.yml'
47 - local: '/admin/gitlab-ci/python-gmxapi03.gitlab-ci.yml'
48 # Further API validation and usability of sample gmxapi extension package.
49 - local: '/admin/gitlab-ci/sample_restraint.gitlab-ci.yml'
50 # API regression testing using sample gmxapi extension package.
51 - local: '/admin/gitlab-ci/sample_restraint-regression.gitlab-ci.yml'
52 # Build and test GROMACS in a variety of environments and configurations.
53 # To do: Consider expanding matrix here to improve transparency and reduce file sizes.
54 # E.g. '/admin/gitlab-ci/matrix/clang-8.gitlab-ci.yml
55 - local: '/admin/gitlab-ci/gromacs.gitlab-ci.yml'
56 # Repository cleanliness. Source tidiness, linting, and policy compliance.
57 - local: '/admin/gitlab-ci/lint.gitlab-ci.yml'
58 # Web page and manual.
59 - local: '/admin/gitlab-ci/documentation.gitlab-ci.yml'
60 # Prepare release archives.
61 - local: '/admin/gitlab-ci/archive.gitlab-ci.yml'