From 6cb86a843e72dc947367621920e646a77f44bb3d Mon Sep 17 00:00:00 2001 From: gpetters94 Date: Tue, 30 Apr 2024 13:27:30 -0400 Subject: [PATCH] Remove IREE pin (fixes exe issue) (#2126) * Diagnose a build issue * Remove IREE pin * Revert the build on pull request change --- .github/workflows/nightly.yml | 1 + setup_venv.ps1 | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ad328bcbb2..1c68e12240 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -53,6 +53,7 @@ jobs: python process_skipfiles.py $env:SHARK_PACKAGE_VERSION=${{ env.package_version }} pip install -e . + pip freeze -l pyinstaller .\apps\shark_studio\shark_studio.spec mv ./dist/nodai_shark_studio.exe ./dist/nodai_shark_studio_${{ env.package_version_ }}.exe signtool sign /f c:\g\shark_02152023.cer /fd certHash /csp "eToken Base Cryptographic Provider" /k "${{ secrets.CI_CERT }}" ./dist/nodai_shark_studio_${{ env.package_version_ }}.exe diff --git a/setup_venv.ps1 b/setup_venv.ps1 index c67b8fc83b..749a7c4e6f 100644 --- a/setup_venv.ps1 +++ b/setup_venv.ps1 @@ -89,7 +89,4 @@ else {python -m venv .\shark.venv\} python -m pip install --upgrade pip pip install wheel pip install -r requirements.txt -# remove this when windows DLL issues are fixed from LLVM changes -pip install --force-reinstall https://github.com/openxla/iree/releases/download/candidate-20240326.843/iree_compiler-20240326.843-cp311-cp311-win_amd64.whl https://github.com/openxla/iree/releases/download/candidate-20240326.843/iree_runtime-20240326.843-cp311-cp311-win_amd64.whl - Write-Host "Source your venv with ./shark.venv/Scripts/activate"