diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0c364f58ee..9d42f73384 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -123,7 +123,7 @@ jobs: continue-on-error: true run: | cd $GITHUB_WORKSPACE - USE_IREE=1 VENV_DIR=iree.venv BENCHMARK=1 ./setup_venv.sh + USE_IREE=1 VENV_DIR=iree.venv ./setup_venv.sh source iree.venv/bin/activate package_version="$(printf '%(%Y%m%d)T.${{ github.run_number }}')" SHARK_PACKAGE_VERSION=${package_version} \ @@ -131,6 +131,8 @@ jobs: # Install the built wheel pip install ./wheelhouse/nodai* # Validate the Models + pip uninstall torch torchvision + pip install --pre torch torchvision --extra-index-url https://download.pytorch.org/whl/nightly/cu117 /bin/bash "$GITHUB_WORKSPACE/build_tools/populate_sharktank_ci.sh" pytest --ci --ci_sha=${SHORT_SHA} --local_tank_cache="./gen_shark_tank/" -k "not metal" | tail -n 1 |