Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Axii
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Software
ArmarX
Meta
Axii
Commits
cce69556
Commit
cce69556
authored
3 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Start implementation
parent
ecb50779
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3
Draft: Resolve "Import command"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
armarx_setup/core/import_.py
+12
-0
12 additions, 0 deletions
armarx_setup/core/import_.py
with
12 additions
and
0 deletions
armarx_setup/core/import_.py
+
12
−
0
View file @
cce69556
import
os.path
from
typing
import
Optional
from
armarx_setup
import
console
...
...
@@ -6,6 +7,17 @@ from armarx_setup.core.workspace import Workspace
def
import_from_cmake_cache
(
ws
:
Workspace
):
console
.
print
(
"
Import from cmake cache ...
"
)
cmake_cache_dir
=
os
.
path
.
expandvars
(
os
.
path
.
join
(
"
$HOME
"
,
"
.cmake
"
,
"
packages
"
))
for
package_name
in
sorted
(
os
.
listdir
(
cmake_cache_dir
)):
package_dir
=
os
.
path
.
join
(
cmake_cache_dir
,
package_name
)
ls
=
sorted
(
os
.
listdir
(
package_dir
))
for
i
,
entry_file
in
enumerate
(
ls
):
entry_path
=
os
.
path
.
join
(
package_dir
,
entry_file
)
console
.
print
(
f
"
Process entry
{
i
+
1
}
/
{
len
(
ls
)
}
of
'
{
package_name
}
'
(
{
entry_file
}
) ...
"
)
with
open
(
entry_path
,
"
r
"
)
as
file
:
build_dir
=
file
.
read
().
strip
()
package_root
=
os
.
path
.
dirname
(
build_dir
)
console
.
print
(
f
"
{
package_root
}
"
)
def
import_from_directory
(
ws
:
Workspace
,
directory
:
str
):
...
...
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