# Copyright (c) Microsoft Corporation. # Licensed under the MIT license. jobs: - job: 'integration_test_pai' timeoutInMinutes: 120 steps: - script: python3 -m pip install --upgrade pip setuptools --user displayName: 'Install python tools' - script: | cd deployment/pypi if [ -d ./dist ] then rm -rf ./dist/* fi echo 'building prerelease package...' make build ls $(Build.SourcesDirectory)/deployment/pypi/dist/ condition: eq( variables['build_docker_img'], 'true' ) displayName: 'build nni bdsit_wheel' - script: | source install.sh displayName: 'Install nni toolkit via source code' - script: | sudo apt-get install swig -y PATH=$HOME/.local/bin:$PATH nnictl package install --name=SMAC PATH=$HOME/.local/bin:$PATH nnictl package install --name=BOHB displayName: 'Install dependencies for integration tests in PAI mode' - script: | set -e if [ $(build_docker_img) = 'true' ] then cd deployment/pypi docker login -u $(docker_hub_user) -p $(docker_hub_pwd) echo 'updating docker file for installing nni from local...' # update Dockerfile to install NNI in docker image from whl file built in last step sed -ie 's/RUN python3 -m pip --no-cache-dir install nni/COPY .\/dist\/* .\/\nRUN python3 -m pip install nni-*.whl/' ../docker/Dockerfile cat ../docker/Dockerfile export IMG_TAG=`date -u +%y%m%d%H%M` echo 'build and upload docker image' docker build -f ../docker/Dockerfile -t $(test_docker_img_name):$IMG_TAG . docker push $(test_docker_img_name):$IMG_TAG export TEST_IMG=$(test_docker_img_name):$IMG_TAG cd ../../ else export TEST_IMG=$(existing_docker_img) fi echo "TEST_IMG:$TEST_IMG" cd test python3 nni_test/nnitest/generate_ts_config.py --ts pai --pai_host $(pai_host) --pai_user $(pai_user) --nni_docker_image $TEST_IMG --pai_storage_config_name $(pai_storage_config_name)\ --pai_token $(pai_token) --nni_manager_nfs_mount_path $(nni_manager_nfs_mount_path) --container_nfs_mount_path $(container_nfs_mount_path) --nni_manager_ip $(nni_manager_ip) PATH=$HOME/.local/bin:$PATH python3 nni_test/nnitest/run_tests.py --config config/integration_tests.yml --ts pai displayName: 'integration test'