File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -195,12 +195,15 @@ jobs:
195195 run : |
196196 $pcount = $($(Get-WmiObject -class Win32_ComputerSystem).numberoflogicalprocessors)
197197 python ..\scripts\build_flang.py -b "Release" -d build -t X86 -p "$(pwd)\..\..\classic-flang-llvm-project\classic-flang-llvm-project\build\" -j $pcount -v
198- $resolved = Resolve-Path "$(pwd)\..\..\classic-flang-llvm-project\classic-flang-llvm-project\build\"
198+ $resolved = Resolve-Path "$(pwd)\..\..\classic-flang-llvm-project\classic-flang-llvm-project\build\bin\ "
199199 $resolved_path = $resolved.Path
200200 $new_path = $resolved_path + ";" + [Environment]::GetEnvironmentVariable("GITHUB_PATH", "Machine")
201+ $env:PATH = "$resolved_path;$env:PATH"
202+ $resolved_path | Set-Content -Path $env:GITHUB_PATH
201203 Write-Output "New GITHUB_PATH: "
202204 Write-Output "$new_path"
203205 [Environment]::SetEnvironmentVariable("GITHUB_PATH", "$new_path", "Machine")
206+ flang --version
204207
205208 - name : Install Windows Dependencies (Part 2a - Reclean Windows Workspace)
206209 if : ${{ matrix.os == 'windows-latest'}}
@@ -243,6 +246,8 @@ jobs:
243246 CXX=clang++
244247 FC=flang
245248 CMAKE_GENERATOR=Ninja
249+ CMAKE_TOOLCHAIN_FILE=D:\a\vcell-fvsolver\vcell-fvsolver\build\conan_toolchain.cmake
250+
246251 # with:
247252 # package-dir: .
248253 # output-dir: wheelhouse
You can’t perform that action at this time.
0 commit comments