Skip to content

Commit

Permalink
cd into the correct directory, don't explicitly add clang to path
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaoliello committed Jul 17, 2023
1 parent 5c4b5ce commit d2ed5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
$visualStudioInstallationPath = & $vsWhere -latest -property installationPath
Import-Module (Join-Path $visualStudioInstallationPath 'Common7\Tools\Microsoft.VisualStudio.DevShell.dll')
Enter-VsDevShell -VsInstallPath $visualStudioInstallationPath -DevCmdArguments '-arch=x64 -host_arch=x64'
cd ${{ github.workspace }}
$env:PATH=(Join-Path $visualStudioInstallationPath 'VC\Tools\Llvm\x64\bin') + ";" + $env:Path + ";${{ github.workspace }}\build\bin"
cd (Join-Path '${{ github.workspace }}' 'llvm\projects\llvm-cbe')
$env:PATH=$env:Path + ";${{ github.workspace }}\build\bin"
$env:LLVMToolDir="${{ github.workspace }}\build\bin"
pytest -n 16

0 comments on commit d2ed5b3

Please sign in to comment.