Skip to content

Commit 1e10922

Browse files
committed
Add step to download and install ROOT framework for Windows CI
1 parent 38fe0da commit 1e10922

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ jobs:
6161
- name: Setup MSVC
6262
uses: ilammy/msvc-dev-cmd@v1
6363

64+
- name: Download and install ROOT framework
65+
run: |
66+
curl -L -o root.zip https://root.cern/download/root_v6.36.04.win64.python311.vc17.zip
67+
Expand-Archive -Path root.zip -DestinationPath C:\
68+
echo "C:\root_v6.36.04.win64.python311.vc17\bin" >> $env:GITHUB_PATH
69+
shell: pwsh
70+
6471
- name: Build and install ParticleZoo library
6572
run: |
6673
.\build.bat install

0 commit comments

Comments
 (0)