Skip to content

Commit

Permalink
Separate TBB setup step
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze413 committed Feb 2, 2024
1 parent 28325bb commit 0ca4a8c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,16 +213,21 @@ 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%
wget --quiet https://github.com/oneapi-src/oneTBB/releases/download/v2020.3/tbb-2020.3-win.zip --directory-prefix=%CD%
unzip tbb-2020.3-win.zip
- name: Setup TBB
run: |
dir
echo %CD%
cd tbb
echo ("TBB_INSTALL_DIR=%CD%") >> $env:GITHUB_ENV
echo ("TBB_ROOT_DIR=%CD%") >> $env:GITHUB_ENV
echo %CD%
set TBB_INSTALL_DIR=%CD%
set TBB_ROOT_DIR=%CD%
echo "TBB_INSTALL_DIR=%TBB_INSTALL_DIR%" >> $env:GITHUB_ENV
echo "TBB_ROOT_DIR=%TBB_ROOT_DIR%" >> $env:GITHUB_ENV
cd -
- name: Setup Python
uses: actions/[email protected]
with:
Expand Down

0 comments on commit 0ca4a8c

Please sign in to comment.