Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release pipeline #1590

Merged
merged 2 commits into from
Dec 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions tests/ci/azure_pipeline_test/release_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
task_name: "Test - Unit Linux CPU"
conda_env: "release_unit_linux_cpu"
conda_opts: "python=3.6"
pip_opts: "[experimental] --no-cache --no-binary scikit-surprise"
pip_opts: "[experimental,dev] --no-cache --no-binary scikit-surprise"
pytest_markers: "not notebooks and not spark and not gpu"
install: "release"
package: "publish"
Expand All @@ -35,7 +35,7 @@ jobs:
task_name: "Test - Unit Notebook Linux CPU"
conda_env: "release_unit_notebook_linux_cpu"
conda_opts: "python=3.6"
pip_opts: "[experimental,examples] --no-cache --no-binary scikit-surprise"
pip_opts: "[experimental,examples,dev] --no-cache --no-binary scikit-surprise"
pytest_markers: "notebooks and not spark and not gpu"
install: "release"

Expand All @@ -45,8 +45,8 @@ jobs:
- unit
task_name: "Test - Unit Linux GPU"
conda_env: "release_unit_linux_gpu"
conda_opts: "python=3.6 -c conda-forge cudatoolkit=11.2 cudnn=8.1"
pip_opts: "[gpu] -f https://download.pytorch.org/whl/cu111/torch_stable.html"
conda_opts: "-c conda-forge python=3.6 cudatoolkit=11.2 cudnn=8.1"
pip_opts: "[gpu,dev] -f https://download.pytorch.org/whl/cu111/torch_stable.html"
pytest_markers: "not notebooks and not spark and gpu"
install: "release"

Expand All @@ -56,8 +56,8 @@ jobs:
- unit
task_name: "Test - Unit Notebook Linux GPU"
conda_env: "release_unit_notebook_linux_gpu"
conda_opts: "python=3.6 -c conda-forge cudatoolkit=11.2 cudnn=8.1"
pip_opts: "[gpu,examples] -f https://download.pytorch.org/whl/cu111/torch_stable.html"
conda_opts: "-c conda-forge python=3.6 cudatoolkit=11.2 cudnn=8.1"
pip_opts: "[gpu,examples,dev] -f https://download.pytorch.org/whl/cu111/torch_stable.html"
pytest_markers: "notebooks and not spark and gpu"
install: "release"

Expand All @@ -68,7 +68,7 @@ jobs:
task_name: "Test - Unit Linux Spark"
conda_env: "release_unit_linux_spark"
conda_opts: "python=3.6"
pip_opts: "[spark]"
pip_opts: "[spark,dev]"
pytest_markers: "not notebooks and spark and not gpu"
install: "release"

Expand All @@ -79,7 +79,7 @@ jobs:
task_name: "Test - Unit Notebook Linux Spark"
conda_env: "release_unit_notebook_linux_spark"
conda_opts: "python=3.6"
pip_opts: "[spark,examples]"
pip_opts: "[spark,examples,dev]"
pytest_markers: "notebooks and spark and not gpu"
install: "release"

Expand All @@ -93,7 +93,7 @@ jobs:
timeout: 180
conda_env: "release_nightly_linux_cpu"
conda_opts: "python=3.6"
pip_opts: "[experimental,examples] --no-cache --no-binary scikit-surprise"
pip_opts: "[experimental,examples,dev] --no-cache --no-binary scikit-surprise"
pytest_markers: "not spark and not gpu"
install: "release"

Expand All @@ -105,8 +105,8 @@ jobs:
task_name: "Test - Nightly Linux GPU"
timeout: 240
conda_env: "release_nightly_linux_gpu"
conda_opts: "python=3.6 -c conda-forge cudatoolkit=11.2 cudnn=8.1"
pip_opts: "[gpu,examples] -f https://download.pytorch.org/whl/cu111/torch_stable.html"
conda_opts: "-c conda-forge python=3.6 cudatoolkit=11.2 cudnn=8.1"
pip_opts: "[gpu,examples,dev] -f https://download.pytorch.org/whl/cu111/torch_stable.html"
pytest_markers: "not spark and gpu"
install: "release"

Expand All @@ -119,7 +119,7 @@ jobs:
timeout: 180
conda_env: "release_nightly_linux_spark"
conda_opts: "python=3.6"
pip_opts: "[spark,examples]"
pip_opts: "[spark,examples,dev]"
pytest_markers: "spark and not gpu"
install: "release"

Expand Down