Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/rust-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
env:
RUST_BACKTRACE: 1
# pin nightly to avoid constantly throwing out cache
TOOLCHAIN_FMT: nightly-2024-04-09
TOOLCHAIN_FMT: nightly-2026-01-13

jobs:
doc:
Expand All @@ -27,6 +27,10 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
key: check-doc-v0
- name: Install deps for libclang (bindgen/clang-sys)
run: |
sudo apt-get update
sudo apt-get install -y clang llvm-dev libclang-dev
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
Expand Down Expand Up @@ -94,6 +98,10 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: "3.6.1"
- name: Install deps for libclang (bindgen/clang-sys)
run: |
sudo apt-get update
sudo apt-get install -y clang llvm-dev libclang-dev
- name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
Expand Down
Loading
Loading