Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ecce
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
detectors
ecce
Merge requests
!2
Fixes to CI pipelines
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fixes to CI pipelines
wdconinc-main-patch-70907
into
main
Overview
0
Commits
15
Pipelines
0
Changes
14
Merged
Wouter Deconinck
requested to merge
wdconinc-main-patch-70907
into
main
3 years ago
Overview
0
Commits
15
Pipelines
0
Changes
14
Expand
0
0
Merge request reports
Compare
main
version 13
5cc958b0
3 years ago
version 12
930c57b5
3 years ago
version 11
7549456a
3 years ago
version 10
836f3d80
3 years ago
version 9
e04e092c
3 years ago
version 8
4fab09f6
3 years ago
version 7
fdc80df0
3 years ago
version 6
de8dc3a6
3 years ago
version 5
17553ae1
3 years ago
version 4
3b85e9e8
3 years ago
version 3
eee0027a
3 years ago
version 2
9d861f74
3 years ago
version 1
109fceef
3 years ago
main (base)
and
latest version
latest version
e2f27975
15 commits,
3 years ago
version 13
5cc958b0
14 commits,
3 years ago
version 12
930c57b5
13 commits,
3 years ago
version 11
7549456a
12 commits,
3 years ago
version 10
836f3d80
11 commits,
3 years ago
version 9
e04e092c
10 commits,
3 years ago
version 8
4fab09f6
9 commits,
3 years ago
version 7
fdc80df0
8 commits,
3 years ago
version 6
de8dc3a6
7 commits,
3 years ago
version 5
17553ae1
4 commits,
3 years ago
version 4
3b85e9e8
3 commits,
3 years ago
version 3
eee0027a
2 commits,
3 years ago
version 2
9d861f74
1 commit,
3 years ago
version 1
109fceef
1 commit,
3 years ago
14 files
+
321
−
31
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
bin/acts_geo_check
0 → 100755
+
24
−
0
Options
#!/bin/bash
logfile
=
$1
# parse the verobse output of scripts/test_ACTS.cxx
res
=
0
nlines
=
$(
grep
-in
error
${
logfile
}
|
grep
-in
D2A_ |
wc
-l
)
if
[[
"
$nlines
"
>
"0"
]]
;
then
echo
" ACTS geometry error: "
grep
-in
error
${
logfile
}
|
grep
-in
D2A_
res
=
"1"
fi
nlines
=
$(
grep
-in
warn
${
logfile
}
|
grep
-in
D2A_ |
wc
-l
)
if
[[
"
$nlines
"
>
"0"
]]
;
then
echo
" ACTS geometry error: "
grep
-in
warn
${
logfile
}
|
grep
-in
D2A_
res
=
"1"
fi
exit
${
res
}
Loading