Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
0774b32d
Unverified
Commit
0774b32d
authored
Feb 16, 2023
by
Omkar Salpekar
Committed by
GitHub
Feb 16, 2023
Browse files
Vision 3.11 Windows Conda Builds (#7263)
parent
efd6bc06
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
3 deletions
+79
-3
.circleci/config.yml
.circleci/config.yml
+74
-0
.circleci/regenerate.py
.circleci/regenerate.py
+0
-2
packaging/build_conda.sh
packaging/build_conda.sh
+5
-1
No files found.
.circleci/config.yml
View file @
0774b32d
...
...
@@ -1282,6 +1282,23 @@ workflows:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
binary_win_conda_py3.10_cu118
python_version
:
'
3.10'
-
binary_win_conda
:
cu_version
:
cpu
name
:
binary_win_conda_py3.11_cpu
python_version
:
'
3.11'
-
binary_win_conda
:
cu_version
:
cu117
filters
:
branches
:
only
:
main
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
binary_win_conda_py3.11_cu117
python_version
:
'
3.11'
-
binary_win_conda
:
cu_version
:
cu118
name
:
binary_win_conda_py3.11_cu118
python_version
:
'
3.11'
-
build_docs
:
filters
:
branches
:
...
...
@@ -1903,6 +1920,63 @@ workflows:
name
:
nightly_binary_win_conda_py3.10_cu118_upload
requires
:
-
nightly_binary_win_conda_py3.10_cu118
-
binary_win_conda
:
cu_version
:
cpu
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_win_conda_py3.11_cpu
python_version
:
'
3.11'
-
binary_conda_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_win_conda_py3.11_cpu_upload
requires
:
-
nightly_binary_win_conda_py3.11_cpu
-
binary_win_conda
:
cu_version
:
cu117
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_win_conda_py3.11_cu117
python_version
:
'
3.11'
-
binary_conda_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_win_conda_py3.11_cu117_upload
requires
:
-
nightly_binary_win_conda_py3.11_cu117
-
binary_win_conda
:
cu_version
:
cu118
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_win_conda_py3.11_cu118
python_version
:
'
3.11'
-
binary_conda_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_win_conda_py3.11_cu118_upload
requires
:
-
nightly_binary_win_conda_py3.11_cu118
docker_build
:
triggers
:
-
schedule
:
...
...
.circleci/regenerate.py
View file @
0774b32d
...
...
@@ -80,8 +80,6 @@ def build_workflows(prefix="", filter_branch=None, upload=False, indentation=6,
# moment since the necessary dependencies are not
# available. Windows 3.11 Wheels will be built from
# CircleCI here, however.
if
python_version
==
"3.11"
and
btype
==
"conda"
:
continue
w
+=
workflow_pair
(
btype
,
os_type
,
python_version
,
cu_version
,
unicode
,
prefix
,
upload
,
filter_branch
=
fb
...
...
packaging/build_conda.sh
View file @
0774b32d
...
...
@@ -13,4 +13,8 @@ setup_visual_studio_constraint
setup_junit_results_folder
export
CUDATOOLKIT_CHANNEL
=
"nvidia"
conda build
-c
$CUDATOOLKIT_CHANNEL
$CONDA_CHANNEL_FLAGS
--no-anaconda-upload
--python
"
$PYTHON_VERSION
"
packaging/torchvision
if
[[
"
$PYTHON_VERSION
"
==
"3.11"
]]
;
then
export
CONDA_CHANNEL_FLAGS
=
"
${
CONDA_CHANNEL_FLAGS
}
-c malfet"
fi
conda build
-c
$CUDATOOLKIT_CHANNEL
$CONDA_CHANNEL_FLAGS
--no-anaconda-upload
--no-test
--python
"
$PYTHON_VERSION
"
packaging/torchvision
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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