Skip to content

Commit

Permalink
Merge pull request #1590 from microsoft/andreas/release
Browse files Browse the repository at this point in the history
Fix release pipeline
  • Loading branch information
anargyri authored Dec 17, 2021
2 parents bbbed05 + 6e4f1a6 commit 0d43b65
Showing 1 changed file with 12 additions and 12 deletions.
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

0 comments on commit 0d43b65

Please sign in to comment.