Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Show more breadcrumbs
Peter Sherwood
athena
Commits
064b120e
Commit
064b120e
authored
8 years ago
by
Charles Leggett
Browse files
Options
Downloads
Plain Diff
port updates of CI scripts to MT branch
See merge request !357 Former-commit-id:
f6fdb684
parents
0ab9dba3
b7f89e44
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CI/CMakeLists.txt
+6
-0
6 additions, 0 deletions
CI/CMakeLists.txt
CI/domain_map.py
+1
-1
1 addition, 1 deletion
CI/domain_map.py
CI/run_unit_tests_for_mr.py
+22
-8
22 additions, 8 deletions
CI/run_unit_tests_for_mr.py
with
29 additions
and
9 deletions
CI/CMakeLists.txt
+
6
−
0
View file @
064b120e
# Declare the package's name to the build. This is necessary for it
# to show up nicely in the build results.
atlas_subdir
(
CI
)
# Declare tests for the "package":
add_test
(
NAME DomainMapTests COMMAND python -m test.test_domain_map WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
)
add_test
(
NAME DomainMapTests COMMAND python -m test.test_domain_map WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
)
add_test
(
NAME WatchListTests COMMAND python -m test.test_watch_list WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
)
add_test
(
NAME WatchListTests COMMAND python -m test.test_watch_list WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
)
set_property
(
TEST DomainMapTests WatchListTests APPEND PROPERTY LABELS CI
)
set_property
(
TEST DomainMapTests WatchListTests APPEND PROPERTY LABELS CI
)
This diff is collapsed.
Click to expand it.
CI/domain_map.py
+
1
−
1
View file @
064b120e
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
DOMAIN_MAP
=
{}
DOMAIN_MAP
=
{}
DOMAIN_MAP
[
'
Analysis
'
]
=
set
([
'
^PhysicsAnalysis/
'
])
DOMAIN_MAP
[
'
Analysis
'
]
=
set
([
'
^PhysicsAnalysis/
'
])
DOMAIN_MAP
[
'
Build
'
]
=
set
([
'
^Build
/
'
,
'
^Projects/
'
])
DOMAIN_MAP
[
'
Build
'
]
=
set
([
'
^Build
$
'
,
'
^Projects/
'
])
DOMAIN_MAP
[
'
Calorimeter
'
]
=
set
([
'
^Calorimeter/
'
])
DOMAIN_MAP
[
'
Calorimeter
'
]
=
set
([
'
^Calorimeter/
'
])
DOMAIN_MAP
[
'
CI
'
]
=
set
([
'
^CI
'
])
DOMAIN_MAP
[
'
CI
'
]
=
set
([
'
^CI
'
])
DOMAIN_MAP
[
'
Core
'
]
=
set
([
'
^Control/
'
])
DOMAIN_MAP
[
'
Core
'
]
=
set
([
'
^Control/
'
])
...
...
This diff is collapsed.
Click to expand it.
CI/run_unit_tests_for_mr.py
+
22
−
8
View file @
064b120e
...
@@ -21,16 +21,30 @@ def run_unit_tests(args):
...
@@ -21,16 +21,30 @@ def run_unit_tests(args):
logging
.
debug
(
"
changed files:
\n
"
+
print_collection
(
changed_files
))
logging
.
debug
(
"
changed files:
\n
"
+
print_collection
(
changed_files
))
affected_packages
=
sorted
(
set
([
map_filename_to_package
(
f
)
for
f
in
changed_files
]))
affected_packages
=
sorted
(
set
([
map_filename_to_package
(
f
)
for
f
in
changed_files
]))
# assemble ctest command
# construct list of patterns for matching test labels
ctest_cmd
=
"
ctest --output-on-failure
"
pattern_list
=
[]
for
p
in
affected_packages
:
for
package_path
in
affected_packages
:
# ignore empty package paths which would trigger all tests
# (empty package paths may appear due to failed mapping)
if
not
package_path
:
continue
# label is package name and not full package path
# label is package name and not full package path
ctest_cmd
+=
"
-L ^
"
+
os
.
path
.
basename
(
p
)
+
"
"
pattern_list
.
append
(
"
^
"
+
os
.
path
.
basename
(
package_path
)
+
"
$
"
)
# only run tests if we found some patterns for test labels
if
pattern_list
:
# assemble ctest command
ctest_cmd
=
"
ctest --output-on-failure
"
ctest_cmd
+=
"
-L
\"
"
+
"
|
"
.
join
(
pattern_list
)
+
"
\"
"
# execute
# execute
logging
.
debug
(
"
ctest command =
'
%s
'"
%
ctest_cmd
)
logging
.
debug
(
"
ctest command =
'
%s
'"
%
ctest_cmd
)
status
=
subprocess
.
call
(
ctest_cmd
,
shell
=
True
)
status
=
subprocess
.
call
(
ctest_cmd
,
shell
=
True
)
return
status
return
status
# no tests -> return success
else
:
return
0
def
main
():
def
main
():
parser
=
argparse
.
ArgumentParser
(
description
=
"
ATLAS unit test runner
"
,
parser
=
argparse
.
ArgumentParser
(
description
=
"
ATLAS unit test runner
"
,
...
...
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