Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lcgcmake
Manage
Activity
Members
Labels
Plan
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
sft
lcgcmake
Commits
27f3a095
Commit
27f3a095
authored
9 years ago
by
Patricia Mendez Lorenzo
Browse files
Options
Downloads
Plain Diff
Merge branch 'experimental' into 'master'
Experimental See merge request
!3
parents
8be981ff
59646fea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cdash/common.cmake
+6
-3
6 additions, 3 deletions
cdash/common.cmake
cdash/copy_to_afs.py
+1
-1
1 addition, 1 deletion
cdash/copy_to_afs.py
cdash/isDone.sh
+6
-2
6 additions, 2 deletions
cdash/isDone.sh
cdash/jk-runbuild.sh
+10
-1
10 additions, 1 deletion
cdash/jk-runbuild.sh
with
23 additions
and
7 deletions
cdash/common.cmake
+
6
−
3
View file @
27f3a095
...
...
@@ -16,13 +16,16 @@ set(CTEST_CONFIGURATION_TYPE ${CTEST_BUILD_CONFIGURATION})
#---Set the source and build directory--------------------------------------
set
(
CTEST_BUILD_PREFIX
"$ENV{WORKDIR}"
)
set
(
CTEST_SOURCE_DIRECTORY
"
${
CTEST_BUILD_PREFIX
}
/
${
CTEST_BUILD_NAME
}
-source"
)
set
(
CTEST_BINARY_DIRECTORY
"
${
CTEST_BUILD_PREFIX
}
/
${
CTEST_BUILD_NAME
}
-build"
)
#set(CTEST_SOURCE_DIRECTORY "${CTEST_BUILD_PREFIX}/${CTEST_BUILD_NAME}-source")
#set(CTEST_BINARY_DIRECTORY "${CTEST_BUILD_PREFIX}/${CTEST_BUILD_NAME}-build")
set
(
CTEST_SOURCE_DIRECTORY
"
${
CTEST_BUILD_PREFIX
}
/source"
)
set
(
CTEST_BINARY_DIRECTORY
"
${
CTEST_BUILD_PREFIX
}
/build"
)
#---Set the install directory-----------------------------------------------
# if $INSTALLDIR is given, use that one, otherwise derive from binary dir
if
(
"$ENV{INSTALLDIR}"
STREQUAL
""
)
set
(
CTEST_INSTALL_DIRECTORY
"
${
CTEST_BUILD_PREFIX
}
/
${
CTEST_BUILD_NAME
}
-install"
)
# set(CTEST_INSTALL_DIRECTORY "${CTEST_BUILD_PREFIX}/${CTEST_BUILD_NAME}-install")
set
(
CTEST_INSTALL_DIRECTORY
"
${
CTEST_BUILD_PREFIX
}
/install"
)
else
()
set
(
CTEST_INSTALL_DIRECTORY
"$ENV{INSTALLDIR}"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
cdash/copy_to_afs.py
+
1
−
1
View file @
27f3a095
...
...
@@ -125,7 +125,7 @@ if __name__ == "__main__":
compilerdir
=
compiler
.
split
(
"
bin
"
)[
0
]
# define source and target
sourcedir
=
"
%s/
%s-
install
"
%
(
workdir
,
platform
)
sourcedir
=
"
%s/install
"
%
(
workdir
)
targetdir
=
os
.
path
.
join
(
options
.
targetbase
,
slotname
,
today
())
# find out which directories to copy
...
...
This diff is collapsed.
Click to expand it.
cdash/isDone.sh
+
6
−
2
View file @
27f3a095
...
...
@@ -15,11 +15,15 @@ platform=`$this/getPlatform.py`
today
=
$(
date
+%a
)
nightdir
=
/afs/cern.ch/sw/lcg/app/nightlies
donefile
=
$nightdir
/
$SLOTNAME
/
$today
/isDone-
$platform
unstabledonefile
=
$nightdir
/
$SLOTNAME
/
$today
/isDone-unstable-
$platform
if
[
$isdone
==
1
]
;
then
touch
$donefile
echo
"Created file
$donefile
"
elif
[
$isdone
==
2
]
;
then
touch
$unstabledonefile
echo
"Created file unstable-
$donefile
"
else
rm
-f
$donefile
echo
"Removed file
$donefile
"
rm
-f
$unstabledonefile
echo
"Removed file
$donefile
and
$unstabledonefile
"
fi
This diff is collapsed.
Click to expand it.
cdash/jk-runbuild.sh
+
10
−
1
View file @
27f3a095
...
...
@@ -21,5 +21,14 @@ rm -rf /tmp/the.lock
env
|
sort
|
sed
's/:/:? /g'
|
tr
'?'
'\n'
# do the build-----------------------------------------------------
ctest
-VV
-S
$THIS
/lcgcmake-build.cmake
ctest
-VV
-S
$THIS
/lcgcmake-build.cmake
if
[
$?
-eq
0
]
then
echo
"Successfully created file"
exit
0
else
echo
"Could not create file"
exit
1
fi
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