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
8242c0e0
Commit
8242c0e0
authored
5 years ago
by
Paul Gessinger
Browse files
Options
Downloads
Plain Diff
Merge branch 'ci_fixes' into 'master'
Clean up CI config See merge request
acts/acts-framework!141
parents
5a22dc33
06af5e5b
Branches
master
Branches containing commit
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
+34
-26
34 additions, 26 deletions
.gitlab-ci.yml
with
34 additions
and
26 deletions
.gitlab-ci.yml
+
34
−
26
View file @
8242c0e0
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,31 +53,35 @@ versions:
script
:
-
./CI/show_versions.sh
build
:
# build jobs
build-minimal
:
stage
:
build
tags
:
-
cvmfs
script
:
-
mkdir build
-
cd build
-
cmake -GNinja -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
-DUSE_DD4HEP=on -DUSE_GEANT4=on -DUSE_TGEO=on -DUSE_PYTHIA8=on
..
-
cmake -GNinja -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..
-
cmake --build .
artifacts
:
paths
:
-
build
expire_in
:
6 hours
build
_vani
ll
a
:
build
-fu
ll
:
stage
:
build
tags
:
-
cvmfs
script
:
-
mkdir build
-
cd build
-
cmake -GNinja -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..
-
cmake -GNinja -DCMAKE_BUILD_TYPE=${BUILD_TYPE}
-DUSE_DD4HEP=on -DUSE_GEANT4=on -DUSE_TGEO=on -DUSE_PYTHIA8=on
..
-
cmake --build .
artifacts
:
paths
:
-
build
expire_in
:
6 hours
# test jobs
.
examples
:
&example_base
.
run
:
stage
:
test
tags
:
-
cvmfs
...
...
@@ -82,67 +90,67 @@ build_vanilla:
-
export PATH=$PWD/build/bin:$PATH
hello_world
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWHelloWorldExample -n ${EVENTS}
generic_propagation
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWGenericPropagationExample -n ${EVENTS}
generic_fatras_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWGenericFatrasExample -n ${EVENTS}
tgeo_fatras_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWTGeoFatrasExample -n ${EVENTS}
generator_particle_gun
:
<<
:
*example_base
extends
:
.run
script
:
-
ActsParticleGun -n ${EVENTS} --output-root 1 --output-csv
1
generator_pythia8
:
<<
:
*example_base
extends
:
.run
script
:
-
ActsPythia8 -n ${EVENTS} --output-root 1 --output-csv
1
whiteboard_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWWhiteBoardExample -n ${EVENTS}
generic_geometry_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWGenericGeometryExample -n ${EVENTS}
random_number_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWRandomNumberExample -n ${EVENTS}
dd4hep_fatras_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWDD4hepFatrasExample -n ${EVENTS}
dd4hep_geometry_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWDD4hepGeometryExample -n ${EVENTS}
dd4hep_propagation_example
:
<<
:
*example_base
extends
:
.run
script
:
-
ACTFWDD4hepPropagationExample -n ${EVENTS}
reproducibility_generic_propagation
:
<<
:
*example_base
extends
:
.run
script
:
-
cd scripts
-
./testReproducibility.sh GenericPropagation ${EVENTS} propagation-steps
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