Closed
Bug 1963102
Opened 3 months ago
Closed 3 months ago
Cryptofuzz CI failure
Categories
(NSS :: Test, defect)
NSS
Test
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mdauer, Assigned: mdauer)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
Cryptofuzz in CI fails because of the check that the version is not older than half a year. This was added to ensure that it is regularly updated, but was in hindsight rather optimstic.
# Alert if version is older than half a year.
cryptofuzz_timestamp=$(git -C cryptofuzz show -s --format=%ct $CRYPTOFUZZ_VERSION)
current_timestamp=$(date +%s)
half_a_year=$((60 * 60 * 24 * 183))
if [ $((current_timestamp - cryptofuzz_timestamp)) -gt $half_a_year ]; then
echo "Cryptofuzz version is older than half a year. Please consider updating it (and Botan). Thanks!" >&2
exit 1
fi
Assignee | ||
Comment 1•3 months ago
|
||
The check was added to ensure that Cryptofuzz is regularly updated, but was in hindsight rather optimistic.
Comment 2•3 months ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 3 months ago
Resolution: --- → FIXED
Updated•3 months ago
|
Blocks: nss-ci-issues
You need to log in
before you can comment on or make changes to this bug.
Description
•