From fc212da619cc32dcc81fc73b58eade7846d44eec Mon Sep 17 00:00:00 2001 From: Scott Todd Date: Thu, 27 Jun 2024 09:59:54 -0700 Subject: [PATCH] Update artifact file names in validate_and_publish_release.yml. (#17753) Follow-up to https://github.com/iree-org/iree/pull/17746, which broke the `validate_and_publish_release.yml` action: https://github.com/iree-org/iree/actions/runs/9697748576/job/26762616900 Tested here: https://github.com/iree-org/iree/actions/runs/9699792082 (which validated https://github.com/iree-org/iree/releases/tag/candidate-20240627.937 then flipped it from draft to pre-release) skip-ci: untested on PRs --- .github/workflows/validate_and_publish_release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate_and_publish_release.yml b/.github/workflows/validate_and_publish_release.yml index be1b933c2444..ffcf39f79bc1 100644 --- a/.github/workflows/validate_and_publish_release.yml +++ b/.github/workflows/validate_and_publish_release.yml @@ -30,7 +30,7 @@ jobs: run_id: ${{ github.event.inputs.build_run_id }} - name: Extract and display downloaded files run: | - tar -xf artifact/iree-dist-${{ github.event.inputs.package_version }}-linux-x86_64.tar.xz + tar -xf wheels-linux-x86_64-main-dist-linux/iree-dist-${{ github.event.inputs.package_version }}-linux-x86_64.tar.xz pwd ls -R - name: Set up python @@ -41,7 +41,9 @@ jobs: - name: Install python packages id: install_python_packages run: | - python -m pip install -f file://$PWD/artifact/ iree-compiler[onnx] iree-runtime iree-tools-tflite iree-tools-tf + python -m pip install -f file://$PWD/wheels-linux-x86_64-py-compiler-pkg/ iree-compiler[onnx] + python -m pip install -f file://$PWD/wheels-linux-x86_64-py-runtime-pkg/ iree-runtime + python -m pip install -f file://$PWD/wheels-linux-x86_64-py-tf-compiler-tools-pkg/ iree-tools-tflite iree-tools-tf - name: Validate IREE Compiler Package id: validate_compiler_package run: |