Skip to content

Commit 6364c6a

Browse files
committed
llvm
Signed-off-by: Larry Gritz <lg@larrygritz.com>
1 parent 2a375d5 commit 6364c6a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/build-steps.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ jobs:
120120
path: ./ccache
121121
key: ${{github.job}}-${{inputs.nametag}}-${{steps.ccache_cache_keys.outputs.date}}
122122
restore-keys: ${{github.job}}-
123-
- name: Setup Nuget.exe (Windows only)
124-
if: runner.os == 'Windows'
125-
uses: nuget/setup-nuget@a21f25cd3998bf370fde17e3f1b4c12c175172f9 # v2.0.0
123+
# - name: Setup Nuget.exe (Windows only)
124+
# if: runner.os == 'Windows'
125+
# uses: nuget/setup-nuget@a21f25cd3998bf370fde17e3f1b4c12c175172f9 # v2.0.0
126126
- name: Build setup
127127
shell: bash
128128
run: |
@@ -147,6 +147,11 @@ jobs:
147147
elif [[ "$RUNNER_OS" == "Windows" ]]; then
148148
src/build-scripts/gh-win-installdeps.bash
149149
fi
150+
- name: Install LLVM (Windows only)
151+
if: runner.os == 'Windows'
152+
uses: jhchundev/install-llvm-action@v1.0.0
153+
with:
154+
version: "18.1.8"
150155
- name: Install sonar-scanner and build-wrapper
151156
if: inputs.sonar == '1'
152157
uses: sonarsource/sonarcloud-github-c-cpp@e4882e1621ad2fb48dddfa48287411bed34789b1 # v2.0.2

src/build-scripts/gh-win-installdeps.bash

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ ls -R -l "$DEP_DIR"
187187
# export CMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH;$OPENEXR_ROOT"
188188
# source src/build-scripts/build_opencolorio.bash
189189

190+
export LLVM_ROOT="C:/Program Files/LLVM"
190191

191192
# Save the env for use by other stages
192193
src/build-scripts/save-env.bash

0 commit comments

Comments
 (0)