From b898a8fa29b0eff0d07a65d2465c63c6bb58cc95 Mon Sep 17 00:00:00 2001 From: Daniel Paoliello Date: Mon, 17 Jul 2023 10:31:08 -0700 Subject: [PATCH] Don't delete the projects dir --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 99dadc86..df9d098e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -112,8 +112,6 @@ jobs: Enter-VsDevShell -VsInstallPath $visualStudioInstallationPath -DevCmdArguments '-arch=x64 -host_arch=x64' cd ${{ github.workspace }} if (!(Test-Path '${{ github.workspace }}\build\')) { mkdir '${{ github.workspace }}\build' } - # Delete the 'projects' directory to force llvm-cbe to be rebuilt. - if (Test-Path '${{ github.workspace }}\build\projects') { del '${{ github.workspace }}\build\projects' -Recurse -Force } cmake -S llvm -B build -G Ninja -DLLVM_INCLUDE_TESTS=On -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache cmake --build build