Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_quantization
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_quantization
Merge requests
!54
Update 0.3.1 -> 0.4.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update 0.3.1 -> 0.4.0
dev
into
main
Overview
2
Commits
157
Pipelines
13
Changes
38
Merged
Cyril Moineau
requested to merge
dev
into
main
1 month ago
Overview
2
Commits
157
Pipelines
13
Changes
38
Expand
0
0
Merge request reports
Compare
main
version 10
67a5ce39
2 weeks ago
version 9
1eb79b12
2 weeks ago
version 8
c99193c6
3 weeks ago
version 7
ab544267
3 weeks ago
version 6
9a5d8633
3 weeks ago
version 5
4cb08b56
3 weeks ago
version 4
06fb85e0
3 weeks ago
version 3
be1cb834
3 weeks ago
version 2
1cf90a30
3 weeks ago
version 1
16e6f676
1 month ago
main (base)
and
latest version
latest version
00e24ca1
157 commits,
2 weeks ago
version 10
67a5ce39
156 commits,
2 weeks ago
version 9
1eb79b12
156 commits,
2 weeks ago
version 8
c99193c6
155 commits,
3 weeks ago
version 7
ab544267
154 commits,
3 weeks ago
version 6
9a5d8633
152 commits,
3 weeks ago
version 5
4cb08b56
151 commits,
3 weeks ago
version 4
06fb85e0
151 commits,
3 weeks ago
version 3
be1cb834
150 commits,
3 weeks ago
version 2
1cf90a30
148 commits,
3 weeks ago
version 1
16e6f676
147 commits,
1 month ago
38 files
+
1893
−
1184
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
38
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh
+
8
−
3
Options
#!/bin/bash
set
-e
if
[[
"
$1
"
==
""
]]
;
then
if
[[
"
$1
"
==
""
]]
;
then
echo
"build aidge deps in cibuildwheel container before building wheel."
echo
"search path defines where the dependencies will be searched."
echo
"Hint : In wheel containers, files are mounted on /host by default."
@@ -10,13 +10,14 @@ set -x
if
[[
$AIDGE_DEPENDENCIES
==
""
]]
;
then
# case for aidge_ core
mkdir
-p
build
# creating build if its not already there to hold the build of cpp files
rm
-rf
build/
*
# build from scratch
else
else
for
repo
in
$AIDGE_DEPENDENCIES
;
do
# case for other projects
search_path
=
$1
REPO_PATH
=
$(
find
$search_path
!
-writable
-prune
-o
-type
d
\
-name
"
$repo
"
\
-not
-path
"*/install/*"
\
-not
-path
"*/.git/*"
\
-not
-path
"*/.mypy_cache/*"
\
-not
-path
"*/miniconda/*"
\
-not
-path
"*/conda/*"
\
-not
-path
"*/.local/*"
\
@@ -24,7 +25,7 @@ else
-not
-path
"*/
$repo
/
$repo
/*"
\
-not
-path
"*/proc/*"
\
-print
-quit
)
if
[[
-z
"
$REPO_PATH
"
]]
;
then
if
[[
-z
"
$REPO_PATH
"
]]
;
then
echo
"ERROR : dependency
$repo
not found in search_path
\"
$search_path
\"
. ABORTING."
exit
-1
fi
@@ -33,6 +34,10 @@ else
mkdir
-p
build
# creating build if its not already there to hold the build of cpp files
rm
-rf
build/
*
# build from scratch
pip
install
.
-v
# Give all rights on generated build folder to avoid root issues once out of the Docker
chmod
-R
a+rwX build/
chmod
-R
a+rwX
*
.egg-info/
cd
-
done
fi
Loading