Skip to content
GitLab
About GitLab
GitLab: the DevOps platform
Explore GitLab
Install GitLab
How GitLab compares
Get started
GitLab docs
GitLab Learn
Pricing
Talk to an expert
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Projects
Groups
Snippets
Sign up now
Login
Sign in / Register
Toggle navigation
Menu
Open sidebar
EIC
detectors
Reference Detector
Commits
4dfe9a01
Commit
4dfe9a01
authored
Mar 26, 2021
by
Whitney Armstrong
Browse files
Fixing the build step
Not sure why, but before_script seems to always succeed even if a step fails.
parent
b167e98b
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
4dfe9a01
...
...
@@ -51,6 +51,7 @@ compile:
needs
:
-
[
"
env"
]
script
:
-
mkdir -p build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=/usr/local && make -j20 && make install && cd ..
-
echo "Build successful."
.views
:
...
...
@@ -103,24 +104,24 @@ detector:config_testing:
-
cat doc/overlap_check.out
allow_failure
:
true
benchmarks:reconstruction:
stage
:
deploy
variables
:
JUGGLER_DETECTOR
:
"
$JUGGLER_DETECTOR"
JUGGLER_DETECTOR_VERSION
:
"
$JUGGLER_DETECTOR_VERSION"
trigger
:
project
:
EIC/benchmarks/reconstruction_benchmarks
strategy
:
depend
needs
:
[
"
env"
,
"
overlap_check"
,
"
report"
]
benchmarks:physics:
stage
:
deploy
variables
:
JUGGLER_DETECTOR
:
"
$JUGGLER_DETECTOR"
JUGGLER_DETECTOR_VERSION
:
"
$JUGGLER_DETECTOR_VERSION"
trigger
:
project
:
EIC/benchmarks/physics_benchmarks
strategy
:
depend
needs
:
[
"
env"
,
"
overlap_check"
,
"
report"
]
#
benchmarks:reconstruction:
#
stage
:
deploy
#
variables
:
#
JUGGLER_DETECTOR: "$JUGGLER_DETECTOR"
#
JUGGLER_DETECTOR_VERSION: "$JUGGLER_DETECTOR_VERSION"
#
trigger:
#
project: EIC/benchmarks/reconstruction_benchmarks
#
strategy: depend
#
needs: ["env","overlap_check","report"]
#
#
#
benchmarks:physics:
#
stage: deploy
#
variables:
#
JUGGLER_DETECTOR: "$JUGGLER_DETECTOR"
#
JUGGLER_DETECTOR_VERSION: "$JUGGLER_DETECTOR_VERSION"
#
trigger:
#
project: EIC/benchmarks/physics_benchmarks
#
strategy: depend
#
needs: ["env","overlap_check","report"]
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment