-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Fix bugs found in integration test #3214
Conversation
@@ -15,36 +15,33 @@ jobs: | |||
echo "##vso[task.setvariable variable=PATH]${PATH}:${HOME}/.local/bin" | |||
echo "##vso[task.setvariable variable=NNI_RELEASE]999.$(date -u +%Y%m%d%H%M%S)" | |||
|
|||
python3 -m pip install -U --upgrade pip setuptools | |||
python3 -m pip install -U pytest | |||
python3 -m pip install --upgrade pip setuptools |
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.
why remove -U
?
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.
Because it's duplicate to --upgrade
.
I mistakenly thought it was --user
.
displayName: Install customized tuner | ||
|
||
- script: | | ||
set -e | ||
docker login -u nnidev -p $(docker_hub_password) | ||
echo '## Build docker image ##' | ||
docker build --build-arg NNI_RELEASE=${NNI_RELEASE} -t nnidev/nni-it-pai:latest . | ||
docker build --build-arg NNI_RELEASE=${NNI_RELEASE} -t nnidev/nni-nightly . |
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.
nightly?
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.
Each day scheduled pipelines will build and push several docker images with same content. So it's effectively the nightly version.
I'm planning to write a pipeline to trigger all IT pipelines (after this release), which will build and push docker image at first. This is a preparation for that.
No description provided.