Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
81a03c2d
Commit
81a03c2d
authored
Feb 24, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests/update_versions.sh: prioritize apps with missing or oldest logs
parent
d5026442
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
update_versions.sh
tests/update_versions.sh
+15
-2
No files found.
tests/update_versions.sh
View file @
81a03c2d
...
@@ -86,8 +86,21 @@ if [ -n "$1" ] ; then
...
@@ -86,8 +86,21 @@ if [ -n "$1" ] ; then
fi
fi
distr
=
"
$(
$EPM
print info
-s
)
"
distr
=
"
$(
$EPM
print info
-s
)
"
# install/update all
# install/update all, prioritizing apps with missing or oldest logs
$EPM
play
$playopt
--list-all
--short
|
while
read
app
;
do
sort_apps_by_log_age
()
{
local
app logfile
while
read
app
;
do
logfile
=
"
$LDIR
/
$app
"
if
[
!
-f
"
$logfile
"
]
;
then
echo
"0
$app
"
else
echo
"
$(
stat
-c
%Y
"
$logfile
"
)
$app
"
fi
done
|
sort
-n
|
sed
's/^[^ ]* //'
}
$EPM
play
$playopt
--list-all
--short
| sort_apps_by_log_age |
while
read
app
;
do
# hack for broken gitlab-runner
# hack for broken gitlab-runner
[
"
$distr
"
!=
"alt"
]
&&
[
"
$app
"
=
"gitlab-runner"
]
&&
continue
[
"
$distr
"
!=
"alt"
]
&&
[
"
$app
"
=
"gitlab-runner"
]
&&
continue
install_app_alt
$app
</dev/null
install_app_alt
$app
</dev/null
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment