CI: install cmake for aws-lc-sys (rustls crypto backend)
All checks were successful
CI / check (push) Successful in 3m54s
All checks were successful
CI / check (push) Successful in 3m54s
rustls 0.23 pulls aws-lc-sys, which compiles AWS-LC via cmake; the node image has gcc/make but not cmake, so add it (plus clang) before the build.
This commit is contained in:
parent
23fac5eb39
commit
7d1edefb70
1 changed files with 3 additions and 0 deletions
|
|
@ -21,6 +21,9 @@ jobs:
|
||||||
- name: Build, lint, and test
|
- name: Build, lint, and test
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
|
# cmake + a C compiler for aws-lc-sys (rustls's crypto backend). The
|
||||||
|
# node image already ships gcc/g++/make; protoc is vendored in build.rs.
|
||||||
|
apt-get update && apt-get install -y --no-install-recommends cmake clang
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal -c clippy
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal -c clippy
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
cargo build --workspace --locked
|
cargo build --workspace --locked
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue