GitHub Actions: Disable Windows LLVM cache (503?)

This commit is contained in:
Luke Street 2021-03-13 10:02:13 -05:00
parent 2693196c45
commit dd8a631111
1 changed files with 16 additions and 16 deletions

View File

@ -127,15 +127,15 @@ jobs:
with:
submodules: recursive
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v1
with:
path: ../LLVM
key: ${{runner.os}}-LLVMCache-${{env.LLVM_VERSION}}
# - name: Cache LLVM
# id: cache-llvm
# uses: actions/cache@v1
# with:
# path: ../LLVM
# key: ${{runner.os}}-LLVMCache-${{env.LLVM_VERSION}}
- name: Download LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
# if: steps.cache-llvm.outputs.cache-hit != 'true'
uses: suisei-cn/actions-download-file@v1
id: download-llvm
with:
@ -143,7 +143,7 @@ jobs:
target: ../temp
- name: Install LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
# if: steps.cache-llvm.outputs.cache-hit != 'true'
shell: cmd
working-directory: ../temp
run: ${{steps.download-llvm.outputs.filename}} /S /D=%RUNNER_WORKSPACE%\LLVM
@ -204,15 +204,15 @@ jobs:
with:
submodules: recursive
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v1
with:
path: ../LLVM
key: ${{runner.os}}-LLVMCache-${{env.LLVM_VERSION}}
# - name: Cache LLVM
# id: cache-llvm
# uses: actions/cache@v1
# with:
# path: ../LLVM
# key: ${{runner.os}}-LLVMCache-${{env.LLVM_VERSION}}
- name: Download LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
# if: steps.cache-llvm.outputs.cache-hit != 'true'
uses: suisei-cn/actions-download-file@v1
id: download-llvm
with:
@ -220,7 +220,7 @@ jobs:
target: ../temp
- name: Install LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
# if: steps.cache-llvm.outputs.cache-hit != 'true'
shell: cmd
working-directory: ../temp
run: ${{steps.download-llvm.outputs.filename}} /S /D=%RUNNER_WORKSPACE%\LLVM