Skip to content

Commit

Permalink
Use relative path in upload-artifact, Add binary install of TBB 2020U…
Browse files Browse the repository at this point in the history
…3, add readline and eigen3 to vcpkg
  • Loading branch information
coolbreeze413 committed Feb 2, 2024
1 parent eaa7599 commit 4d21fbe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
with:
name: openfpga-build-${{ env.COMMIT_SHA1 }}-${{ matrix.msystem }}
retention-days: 2
path: ${{ env.SOURCE_DIR }}/openfpga-${{ env.COMMIT_SHA1 }}-${{ matrix.msystem }}.7z
path: openfpga/openfpga-${{ env.COMMIT_SHA1 }}-${{ matrix.msystem }}.7z
overwrite: true

build-msvc:
Expand Down Expand Up @@ -213,6 +213,12 @@ jobs:
choco install -y make
choco install -y winflexbison
choco install -y wget
wget https://github.com/oneapi-src/oneTBB/releases/download/v2020.3/tbb-2020.3-win.zip --directory-prefix=%CD%
cd tbb
echo ("TBB_INSTALL_DIR=%CD%") >> $env:GITHUB_ENV
echo ("TBB_ROOT_DIR=%CD%") >> $env:GITHUB_ENV
cd -
- name: Setup Python
uses: actions/[email protected]
Expand All @@ -222,7 +228,7 @@ jobs:

- name: Install libusb with vcpkg
run: |
C:\vcpkg\vcpkg.exe install libusb tbb zlib gtk3 libx11 --triplet=x64-windows
C:\vcpkg\vcpkg.exe install libusb readline eigen3 zlib gtk3 libx11 --triplet=x64-windows
C:\vcpkg\vcpkg.exe integrate install
- name: Install nasm with choco
Expand Down

0 comments on commit 4d21fbe

Please sign in to comment.