Skip to content

Commit ece3a7f

Browse files
committed
chore: Try to fix GitHub action due to rustcord
1 parent e90d9b6 commit ece3a7f

File tree

3 files changed

+146
-46
lines changed

3 files changed

+146
-46
lines changed

.github/workflows/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,20 @@ jobs:
1919
profile: minimal
2020
toolchain: stable
2121
override: true
22+
- name: Get latest CMake and ninja
23+
uses: lukka/get-cmake@latest
24+
- name: Cache LLVM and Clang
25+
id: cache-llvm
26+
uses: actions/cache@v2
27+
with:
28+
path: ${{ runner.temp }}/llvm
29+
key: llvm-10.0
30+
- name: Install LLVM and Clang
31+
uses: KyleMayes/install-llvm-action@v1
32+
with:
33+
version: "10.0"
34+
directory: ${{ runner.temp }}/llvm
35+
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
2236
- name: Run cargo build
2337
uses: actions-rs/cargo@v1
2438
with:

0 commit comments

Comments
 (0)