Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
acts-framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Gabriel Farrugia
acts-framework
Commits
3150d5a2
Commit
3150d5a2
authored
5 years ago
by
Moritz Kiehn
Committed by
Moritz Kiehn
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ci: move checks to build stage
parent
5a22dc33
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+12
-4
12 additions, 4 deletions
.gitlab-ci.yml
with
12 additions
and
4 deletions
.gitlab-ci.yml
+
12
−
4
View file @
3150d5a2
stages
:
-
check
-
build
-
test
...
...
@@ -15,8 +14,13 @@ before_script:
# setup scripts do not like that
-
set +e && source CI/setup_lcg94.sh; set -e
# check jobs
# these are technically pre-built checks and were previously in a separate
# pre-build stage. they are now part of the build stage so the user can get
# feedback from both the non-build checks and the build jobs at the same time.
format
:
stage
:
check
stage
:
build
variables
:
GIT_SUBMODULE_STRATEGY
:
none
# we don't need to check core submodule
image
:
gitlab-registry.cern.ch/acts/machines/check:latest
...
...
@@ -30,7 +34,7 @@ format:
when
:
on_failure
license
:
stage
:
check
stage
:
build
image
:
python:alpine3.6
variables
:
GIT_SUBMODULE_STRATEGY
:
none
# we don't need to check core submodule
...
...
@@ -41,7 +45,7 @@ license:
-
CI/check_license.py .
versions
:
stage
:
check
stage
:
build
variables
:
GIT_SUBMODULE_STRATEGY
:
none
# we don't need to check core submodule
tags
:
...
...
@@ -49,6 +53,8 @@ versions:
script
:
-
./CI/show_versions.sh
# build jobs
build
:
stage
:
build
tags
:
...
...
@@ -73,6 +79,8 @@ build_vanilla:
-
cmake -GNinja -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..
-
cmake --build .
# test jobs
.examples
:
&example_base
stage
:
test
tags
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment