Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Installation test pipeline (#1709)
Browse files Browse the repository at this point in the history
* nni installation test pipeline
  • Loading branch information
chicm-ms authored Nov 11, 2019
1 parent 8735fa5 commit e6df29c
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions test/pipelines-it-installation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
jobs:
- job: 'pip_install_ubuntu_python36'
pool:
vmImage: 'ubuntu-18.04'
strategy:
matrix:
Python36:
PYTHON_VERSION: '3.6'

steps:
- script: |
python3 -V
python3 -m pip install --upgrade pip setuptools --user
python3 -m pip install --upgrade nni --user
displayName: 'Install nni'
- job: 'pip_install_macOS_python36'
pool:
vmImage: 'macOS-10.13'
strategy:
matrix:
Python36:
PYTHON_VERSION: '3.6'

steps:
- script: |
python3 -V
python3 -m pip install --upgrade pip setuptools --user
python3 -m pip install --upgrade nni --user
displayName: 'Install nni'
- job: 'pip_install_windows_python36'
pool:
vmImage: 'windows-latest'
strategy:
matrix:
Python36:
PYTHON_VERSION: '3.6'

steps:
- script: |
python -V
python -m pip install --upgrade pip setuptools --user
python -m pip install --upgrade nni --user
displayName: 'Install nni'

0 comments on commit e6df29c

Please sign in to comment.