-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use relative path in upload-artifact, Add binary install of TBB 2020U…
…3, add readline and eigen3 to vcpkg
- Loading branch information
1 parent
eaa7599
commit 4d21fbe
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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] | ||
|
@@ -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 | ||
|