Skip to content

Commit

Permalink
try hidden folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jorendumoulin committed Dec 17, 2024
1 parent 3d092c7 commit 3f8e79b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci-aie.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ jobs:
- name: Download and setup MLIR-AIE
if: steps.cache-binary.outputs.cache-hit != 'true'
run: |
wget -q https://github.com/Xilinx/mlir-aie/releases/download/latest-wheels/mlir_aie-${{ env.MLIR-AIE-Version }}-py3-none-manylinux_2_35_x86_64.whl -O /tmp/mlir_aie.whl
unzip -q /tmp/mlir_aie.whl -d /tmp/mlir_aie
wget -q https://github.com/Xilinx/mlir-aie/releases/download/latest-wheels/mlir_aie-${{ env.MLIR-AIE-Version }}-py3-none-manylinux_2_35_x86_64.whl -O mlir_aie.whl
unzip -q /tmp/mlir_aie.whl -d .mlir_aie
rm -rf mlir_aie.whl
- name: Add MLIR-AIE to PATH
run: |
echo "/tmp/mlir_aie/bin" >> $GITHUB_PATH
echo "$(pwd)/.mlir_aie/bin" >> $GITHUB_PATH
echo "PATH after adding MLIR-AIE:"
echo $PATH
- name: Test aie-opt version
Expand Down

0 comments on commit 3f8e79b

Please sign in to comment.