Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
dashboard
Commits
de18f891
Commit
de18f891
authored
Oct 05, 2021
by
Guilhem Saurel
Browse files
fix ordered after ccache → sccache
parent
7e5eb7ad
Pipeline
#16259
passed with stage
in 3 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/models.py
View file @
de18f891
...
...
@@ -1322,7 +1322,7 @@ def ordered_projects():
"""Get the robotpkg dependencies for a given robotpkg."""
with
(
settings
.
RAINBOARD_RPKG
/
cat
/
pkg
/
'Makefile'
).
open
()
as
file_handle
:
cont
=
file_handle
.
read
()
deps
=
[
d_pkg
for
d_cat
,
d_pkg
,
_
,
_
in
rpkgs
if
f
'
\n
include ../../
{
d_cat
}
/
{
d_pkg
}
/depend.mk
\n
'
in
cont
]
deps
=
[
d_pkg
for
d_cat
,
d_pkg
,
_
in
rpkgs
if
f
'
\n
include ../../
{
d_cat
}
/
{
d_pkg
}
/depend.mk
\n
'
in
cont
]
if
pkg
.
startswith
(
'py-'
)
and
(
cat
,
pkg
[
3
:],
ns
)
in
rpkgs
:
deps
.
append
(
pkg
[
3
:])
deps_cache
[
pkg
]
=
sorted
(
set
(
deps
))
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment