Skip to content

Commit

Permalink
Update artifact file names in validate_and_publish_release.yml. (iree…
Browse files Browse the repository at this point in the history
…-org#17753)

Follow-up to iree-org#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
  • Loading branch information
ScottTodd authored Jun 27, 2024
1 parent 0bf393f commit fc212da
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/validate_and_publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit fc212da

Please sign in to comment.