Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Cyril Moineau
aidge_core
Commits
4e53d949
Commit
4e53d949
authored
1 year ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Wrong gitlab runner for windows_python
parent
4b840ec7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab/ci/build.gitlab-ci.yml
+16
-6
16 additions, 6 deletions
.gitlab/ci/build.gitlab-ci.yml
setup.py
+2
-2
2 additions, 2 deletions
setup.py
with
18 additions
and
8 deletions
.gitlab/ci/build.gitlab-ci.yml
+
16
−
6
View file @
4e53d949
...
@@ -130,16 +130,26 @@ build:windows_python:
...
@@ -130,16 +130,26 @@ build:windows_python:
stage
:
build
stage
:
build
needs
:
[]
needs
:
[]
tags
:
tags
:
-
docker
-
windows
image
:
buildtools
before_script
:
# Install Chocolatey
-
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
# Install dependencies
-
choco install cmake.install --installargs '"ADD_CMAKE_TO_PATH=System"' -Y
-
choco install git -Y
-
choco install python -Y
# Update PATH
-
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
script
:
script
:
-
python
3
-m pip install virtualenv
-
python -m pip install virtualenv
-
virtualenv venv
-
virtualenv venv
-
source venv/bin/a
ctivate
-
venv\Scripts\A
ctivate
.ps1
# Numpy dependancy for unit test
# Numpy dependancy for unit test
-
python
3
-m pip install numpy
-
python -m pip install numpy
-
export
AIDGE_INSTALL
=`pwd`/
install
-
$env:
AIDGE_INSTALL
= "$pwd" + "
install
"
-
python
3
-m pip install .
-
python -m pip install .
artifacts
:
artifacts
:
expire_in
:
1 week
expire_in
:
1 week
paths
:
paths
:
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
4e53d949
...
@@ -70,8 +70,8 @@ class CMakeBuild(build_ext):
...
@@ -70,8 +70,8 @@ class CMakeBuild(build_ext):
self
.
spawn
([
'
cmake
'
,
str
(
cwd
),
param_py
,
'
-DTEST=OFF
'
,
f
'
-DCMAKE_INSTALL_PREFIX:PATH=
{
install_path
}
'
])
self
.
spawn
([
'
cmake
'
,
str
(
cwd
),
param_py
,
'
-DTEST=OFF
'
,
f
'
-DCMAKE_INSTALL_PREFIX:PATH=
{
install_path
}
'
])
if
not
self
.
dry_run
:
if
not
self
.
dry_run
:
self
.
spawn
([
'
cmake
'
,
'
--build
'
,
'
.
'
,
'
-j
'
,
max_jobs
])
self
.
spawn
([
'
cmake
'
,
'
--build
'
,
'
.
'
,
'
--config
'
,
'
Debug
'
,
'
-j
'
,
max_jobs
])
self
.
spawn
([
'
cmake
'
,
'
--install
'
,
'
.
'
])
self
.
spawn
([
'
cmake
'
,
'
--install
'
,
'
.
'
,
'
--config
'
,
'
Debug
'
])
os
.
chdir
(
str
(
cwd
))
os
.
chdir
(
str
(
cwd
))
aidge_package
=
build_lib
/
(
get_project_name
())
aidge_package
=
build_lib
/
(
get_project_name
())
...
...
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