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