Skip to content

Commit d9e1228

Browse files
committed
Temporarily add build-essential to pure-rust-build job
This still installs `gcc` and `libc-dev` because `build-essential` depends on them, but this als installs packages such as `g++` and `make`, the absence of which seems to trigger failure before the effects of installing the `minimal` toolchain do (if they do). As in the previous change, this will of course need to be undone.
1 parent 26ebbe6 commit d9e1228

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Prerequisites
27-
run: apt-get update && apt-get install --no-install-recommends -y ca-certificates curl gcc libc-dev cmake # gcc is required as OS abstraction
27+
run: apt-get update && apt-get install --no-install-recommends -y ca-certificates curl build-essential cmake # gcc is required as OS abstraction
2828
- name: install Rust via Rustup
2929
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal;
3030
- uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)