This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Installation test pipeline #1709
Merged
Merged
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
7b6472f
nni installation test pipeline
chicm-ms ea940a6
updates
chicm-ms 03ffd79
updates
chicm-ms f77714f
updates
chicm-ms 8f89504
updates
chicm-ms 03028dd
updates
chicm-ms 3d58ad2
updates
chicm-ms b0b0531
updates
chicm-ms 3cdac40
updates
chicm-ms a0f3465
updates
chicm-ms c94413c
updates
chicm-ms e15a3b0
updates
chicm-ms bf1efd1
updates
chicm-ms File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
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' | ||
- script: | | ||
cd examples/trials/mnist | ||
~/.local/bin/nnictl create --config config.yml | ||
displayName: 'mnist test' | ||
|
||
- 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' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This only tests released version right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So when this test case fails, we have already published a broken release...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just a start point, we can add more later, for example: