We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f117d commit c2ea04dCopy full SHA for c2ea04d
circleci/images/stylechecker/Dockerfile
@@ -16,6 +16,8 @@ apk add --no-cache --virtual installdeps \
16
gcc \
17
gzip \
18
musl-dev \
19
+ cargo \
20
+ rust \
21
openssl-dev \
22
py3-pip \
23
python3-dev \
@@ -47,6 +49,10 @@ make install
47
49
cd ../..
48
50
rm -rf uncrustify-uncrustify-0.82.0/
51
52
+export CARGO_HOME="${CARGO_HOME:-/root/.cargo}"
53
+cargo install --locked bpf-linker
54
+install -m 755 "$CARGO_HOME/bin/bpf-linker" /usr/local/bin/bpf-linker
55
+
56
# this image is only used for testing purposes, so should be okay to overwrite system-managed packages
57
pip3 install -Ir /tmp/etc/requirements.txt --break-system-packages
58
apk del installdeps
0 commit comments