Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Computing
cbmroot
Commits
ad28d8eb
Commit
ad28d8eb
authored
11 months ago
by
Pierre-Alain Loizeau
Browse files
Options
Downloads
Patches
Plain Diff
[CDASH] Try to fix CET/CEST in script finding job end time
parent
1e0d03a5
No related branches found
No related tags found
1 merge request
!1754
[CDASH] Try to fix CET/CEST in script finding job end time
Pipeline
#28802
passed
11 months ago
Stage: package
Stage: verify
Stage: documentation
Stage: deploy
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/find_slurm_ctest_stop_time.sh
+4
-2
4 additions, 2 deletions
scripts/find_slurm_ctest_stop_time.sh
with
4 additions
and
2 deletions
scripts/find_slurm_ctest_stop_time.sh
+
4
−
2
View file @
ad28d8eb
...
...
@@ -20,7 +20,8 @@
# SLURM end time
END_TIME
=
`
squeue
-j
${
SLURM_JOB_ID
}
-h
--Format
EndTime
`
echo
"SLURM Job end time
${
END_TIME
}
"
CET_CEST
=
`
date
+
"%Z"
`
echo
"SLURM Job end time
${
END_TIME
}
probably
${
CET_CEST
}
"
# Ctest end time = SLURM -5 minutes (should be enough for coverage and uploads)
# => Not working as ctest expects the "time point in hours-minutes-seconds within current day"
...
...
@@ -36,7 +37,8 @@ echo "SLURM Job end time ${END_TIME}"
# (tried all timezone options of date, with and without space between time and timezone)
#CTEST_END_TIME_LIMIT=`date -d "${END_TIME}CET -5minutes" +"%H:%M:%S %z"`
# => Working! but probably unsafe on day of Summer time swaps + if tests run close to midnight...
CTEST_END_TIME_LIMIT
=
`
date
-d
"
${
END_TIME
}
CET -5minutes"
+
"%H:%M:%S"
`
# => Fixed for summer time but will probably still fail on the day of the swap itself... so twice a year
CTEST_END_TIME_LIMIT
=
`
date
-d
"
${
END_TIME
}${
CET_CEST
}
-5minutes"
+
"%H:%M:%S"
`
echo
"Setting the job time limit for ctest to
${
CTEST_END_TIME_LIMIT
}
to make sure CDASH data is uploaded"
if
[[
$#
-eq
1
]]
;
then
...
...
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