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
!15
version 0.2.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
version 0.2.0
dev
into
main
Overview
0
Commits
74
Pipelines
6
Changes
50
Merged
Maxence Naud
requested to merge
dev
into
main
8 months ago
Overview
0
Commits
74
Pipelines
6
Changes
50
Expand
Update version to 0.2.0
0
0
Merge request reports
Compare
main
version 2
fe06a0f3
8 months ago
version 1
420aef82
8 months ago
main (base)
and
latest version
latest version
3adf3096
74 commits,
8 months ago
version 2
fe06a0f3
73 commits,
8 months ago
version 1
420aef82
72 commits,
8 months ago
50 files
+
2477
−
149
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
50
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.ps1
0 → 100644
+
23
−
0
Options
$Error
ActionPreference
=
"Stop"
# Retrieve and clean the dependencies string from the environment variable
$AIDGE_DEPENDENCIES
=
$
env
:
AIDGE_DEPENDENCIES
-split
' '
Write-Host
"Aidge dependencies :
$AIDGE_DEPENDENCIES
"
if
(
$
(
$AIDGE_DEPENDENCIES
.
Length
)
-eq
0
)
{
Write-Host
"- No dependencies provided for current repsitory"
New-Item
-ItemType
Directory
-Force
-Path
".\build"
|
Out-Null
Remove-Item
-Path
".\build\*"
-Recurse
-Force
}
else
{
Write-Host
"Retrieving given dependencies to build current package :
$AIDGE_DEPENDENCIES
"
foreach
(
$dep
in
$
(
$AIDGE_DEPENDENCIES
-split
" "
))
{
Write-Host
"Retrieving :
$dep
"
$curr_loc
=
$
(
Get-Location
)
Set-Location
..
/
$dep
Get-Location
Get-ChildItem
.
New-Item
-Path
".\build"
-ItemType
Directory
-Force
|
Out-Null
Get-ChildItem
-Path
".\build"
-File
|
Remove-Item
-Force
python
-m
pip
install
.
-v
Set-Location
$curr_loc
}
}
Loading