Skip to content

Commit 14f6143

Browse files
Move precommit to 20.04 (#15)
1 parent 5beaf4c commit 14f6143

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/buildAndTest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
jobs:
88
build-llvm:
99
name: Build LLVM
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Configure Environment
1313
run: echo "::add-path::$GITHUB_WORKSPACE/${LLVM}/install/bin"
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/cache@v2
2525
with:
2626
path: ${{ env.LLVM }}
27-
key: ${{ runner.os }}-llvm-install-${{ steps.get-llvm-hash.outputs.hash }}
27+
key: ${{ runner.os }}-llvm-20.04-install-${{ steps.get-llvm-hash.outputs.hash }}
2828
- name: Rebuild and Install LLVM
2929
if: steps.cache-llvm.outputs.cache-hit != 'true'
3030
run: |
@@ -36,7 +36,7 @@ jobs:
3636
build:
3737
name: Build and Test
3838
needs: build-llvm
39-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-20.04
4040
steps:
4141
- name: Configure Environment
4242
run: echo "::add-path::$GITHUB_WORKSPACE/${LLVM}/install/bin"
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/cache@v2
5454
with:
5555
path: ${{ env.LLVM }}
56-
key: ${{ runner.os }}-llvm-install-${{ steps.get-llvm-hash.outputs.hash }}
56+
key: ${{ runner.os }}-llvm-20.04-install-${{ steps.get-llvm-hash.outputs.hash }}
5757
- name: Rebuild and Install LLVM
5858
if: steps.cache-llvm.outputs.cache-hit != 'true'
5959
run: |

0 commit comments

Comments
 (0)