|
13 | 13 | # See the License for the specific language governing permissions and
|
14 | 14 | # limitations under the License.
|
15 | 15 |
|
16 |
| -# Latest Ubuntu LTS |
17 |
| -FROM ubuntu:22.04 |
18 |
| -ENV DEBIAN_FRONTEND noninteractive |
19 |
| - |
20 |
| -RUN apt-get update && apt-get upgrade -y && apt-get install -y wget nano rsync curl gnupg2 jq unzip bzip2 |
21 |
| - |
22 |
| -# for clang-*-15, see https://apt.llvm.org/ |
23 |
| -RUN echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" >> /etc/apt/sources.list && \ |
24 |
| - echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" >> /etc/apt/sources.list && \ |
25 |
| - wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - |
| 16 | +FROM shiftcrypto/ubuntu:1 |
26 | 17 |
|
27 | 18 | # Install gcc8-arm-none-eabi
|
28 |
| -RUN mkdir ~/Downloads &&\ |
29 |
| - cd ~/Downloads &&\ |
30 |
| - wget -O gcc.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/8-2018q4/gcc-arm-none-eabi-8-2018-q4-major-linux.tar.bz2?revision=d830f9dd-cd4f-406d-8672-cca9210dd220?product=GNU%20Arm%20Embedded%20Toolchain,64-bit,,Linux,8-2018-q4-major &&\ |
| 19 | +RUN wget -O gcc.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/8-2018q4/gcc-arm-none-eabi-8-2018-q4-major-linux.tar.bz2?revision=d830f9dd-cd4f-406d-8672-cca9210dd220?product=GNU%20Arm%20Embedded%20Toolchain,64-bit,,Linux,8-2018-q4-major &&\ |
31 | 20 | echo "fb31fbdfe08406ece43eef5df623c0b2deb8b53e405e2c878300f7a1f303ee52 gcc.tar.bz2" | sha256sum -c &&\
|
32 |
| - cd ~/Downloads &&\ |
33 |
| - tar -xjvf gcc.tar.bz2 &&\ |
34 |
| - rm -f gcc.tar.bz2 &&\ |
35 |
| - cd ~/Downloads && rsync -a gcc-arm-none-eabi-8-2018-q4-major/ /usr/local/ |
36 |
| - |
37 |
| -# Tools for building |
38 |
| -RUN apt-get update && apt-get install -y \ |
39 |
| - build-essential \ |
40 |
| - llvm-18 \ |
41 |
| - gcc-10 \ |
42 |
| - binutils \ |
43 |
| - valgrind \ |
44 |
| - cmake \ |
45 |
| - git \ |
46 |
| - autotools-dev \ |
47 |
| - automake \ |
48 |
| - autoconf \ |
49 |
| - libtool \ |
50 |
| - pkg-config \ |
51 |
| - libcmocka-dev \ |
52 |
| - libc6-i386 \ |
53 |
| - lib32stdc++6 \ |
54 |
| - lib32z1 \ |
55 |
| - libusb-1.0-0-dev \ |
56 |
| - libudev-dev \ |
57 |
| - libhidapi-dev |
58 |
| - |
59 |
| -RUN apt-get update && apt-get install -y \ |
60 |
| - doxygen \ |
61 |
| - graphviz |
| 21 | + tar -xjf gcc.tar.bz2 -C /usr/local --strip-components=1 &&\ |
| 22 | + rm gcc.tar.bz2 /root/.wget-hsts |
62 | 23 |
|
63 | 24 | # Set gcc-10 as the default gcc
|
64 |
| -RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 |
65 |
| -RUN update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-10 100 |
66 |
| - |
67 |
| -# Tools for CI |
68 |
| -RUN apt-get update && apt-get install -y \ |
69 |
| - python3 \ |
70 |
| - python3-pip \ |
71 |
| - clang-format-18 \ |
72 |
| - clang-tidy-18 |
| 25 | +RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 && rm /var/log/alternatives.log |
| 26 | +RUN update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-10 100 && rm /var/log/alternatives.log |
73 | 27 |
|
74 |
| -RUN python3 -m pip install --upgrade pip |
| 28 | +# Make Python3 the default |
| 29 | +RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && rm /var/log/alternatives.log |
75 | 30 |
|
76 | 31 | # Python modules
|
77 |
| -COPY py/bitbox02 /tmp/bitbox02 |
78 |
| -RUN python3 -m pip install /tmp/bitbox02 |
79 |
| -RUN rm -r /tmp/bitbox02 |
80 |
| -COPY py/requirements.txt /tmp |
81 |
| -RUN python3 -m pip install --upgrade --requirement /tmp/requirements.txt |
82 |
| -RUN rm /tmp/requirements.txt |
| 32 | +RUN --mount=source=py/bitbox02,target=/mnt/bitbox02,rw \ |
| 33 | + pip install --no-compile --no-cache-dir /mnt/bitbox02 |
| 34 | +RUN --mount=source=py/requirements.txt,target=/mnt/requirements.txt \ |
| 35 | + pip install --no-compile --no-cache-dir --upgrade --requirement /mnt/requirements.txt |
83 | 36 |
|
84 | 37 | # Python modules for CI
|
85 |
| -RUN python3 -m pip install --upgrade \ |
| 38 | +RUN pip install --no-compile --no-cache-dir --upgrade \ |
86 | 39 | pylint==2.13.9 \
|
87 | 40 | pylint-protobuf==0.20.2 \
|
88 | 41 | black==22.3.0 \
|
89 | 42 | mypy==0.960 \
|
90 |
| - mypy-protobuf==3.2.0 |
91 |
| - |
92 |
| -# Python modules for packaging |
93 |
| -RUN python3 -m pip install --upgrade \ |
| 43 | + mypy-protobuf==3.2.0 \ |
94 | 44 | setuptools==41.2.0 \
|
95 | 45 | wheel==0.33.6 \
|
96 |
| - twine==1.15.0 |
| 46 | + twine==1.15.0 \ |
| 47 | + gcovr==7.2 |
97 | 48 |
|
98 | 49 | #Install protoc from release, because the version available on the repo is too old
|
99 | 50 | RUN mkdir -p /opt/protoc && \
|
100 | 51 | curl -L0 https://github.com/protocolbuffers/protobuf/releases/download/v21.2/protoc-21.2-linux-x86_64.zip -o /tmp/protoc-21.2-linux-x86_64.zip && \
|
101 |
| - unzip /tmp/protoc-21.2-linux-x86_64.zip -d /opt/protoc |
102 |
| -ENV PATH /opt/protoc/bin:$PATH |
103 |
| - |
104 |
| -# Make Python3 the default |
105 |
| -RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 |
106 |
| - |
107 |
| -# Developer tools |
108 |
| -RUN apt-get update && apt-get install -y \ |
109 |
| - bash-completion |
110 |
| -# Install gcovr from PIP to get a newer version than in apt repositories |
111 |
| -RUN python3 -m pip install gcovr |
| 52 | + unzip /tmp/protoc-21.2-linux-x86_64.zip -d /opt/protoc &&\ |
| 53 | + rm /tmp/protoc-21.2-linux-x86_64.zip |
| 54 | +ENV PATH=/opt/protoc/bin:$PATH |
112 | 55 |
|
113 | 56 | # Install Go, used for the tools in tools/go and for test/gounittest
|
114 |
| -ENV GOPATH /opt/go |
115 |
| -ENV GOROOT /opt/go_dist/go |
116 |
| -ENV PATH $GOROOT/bin:$GOPATH/bin:$PATH |
| 57 | +ENV GOPATH=/opt/go |
| 58 | +ENV GOROOT=/opt/go_dist/go |
| 59 | +ENV PATH=$GOROOT/bin:$GOPATH/bin:$PATH |
117 | 60 | RUN mkdir -p /opt/go_dist && \
|
118 | 61 | curl https://dl.google.com/go/go1.19.3.linux-amd64.tar.gz | tar -xz -C /opt/go_dist
|
119 | 62 |
|
120 | 63 | # Install lcov from release (the one from the repos is too old).
|
121 |
| -RUN cd /opt && wget https://github.com/linux-test-project/lcov/releases/download/v1.14/lcov-1.14.tar.gz && tar -xf lcov-1.14.tar.gz |
122 |
| -ENV PATH /opt/lcov-1.14/bin:$PATH |
| 64 | +RUN curl -L https://github.com/linux-test-project/lcov/releases/download/v1.14/lcov-1.14.tar.gz | tar -xz -C /opt |
| 65 | +ENV PATH=/opt/lcov-1.14/bin:$PATH |
123 | 66 |
|
124 | 67 | # Install rust compiler
|
125 |
| -ENV PATH /opt/cargo/bin:$PATH |
| 68 | +# Since bindgen embeds information about its target directory, use a deterministic path for it. |
| 69 | +ENV PATH=/opt/cargo/bin:$PATH |
126 | 70 | ENV RUSTUP_HOME=/opt/rustup
|
127 |
| -COPY src/rust/rust-toolchain.toml /tmp/rust-toolchain.toml |
128 |
| -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/opt/cargo sh -s -- --default-toolchain $(grep -oP '(?<=channel = ")[^"]+' /tmp/rust-toolchain.toml) -y |
129 |
| -RUN rustup target add thumbv7em-none-eabi |
130 |
| -RUN rustup component add rustfmt |
131 |
| -RUN rustup component add clippy |
132 |
| -RUN rustup component add rust-src |
133 |
| -RUN CARGO_HOME=/opt/cargo cargo install cbindgen --version 0.26.0 --locked |
134 |
| -RUN CARGO_HOME=/opt/cargo cargo install bindgen-cli --version 0.69.4 --locked |
| 71 | +RUN --mount=source=tools/prost-build-proto,target=/mnt/prost-build-proto,rw \ |
| 72 | + --mount=source=src/rust/rust-toolchain.toml,target=/mnt/rust-toolchain.toml \ |
| 73 | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs |\ |
| 74 | + CARGO_HOME=/opt/cargo sh -s -- --default-toolchain $(grep -oP '(?<=channel = ")[^"]+' /mnt/rust-toolchain.toml) -y &&\ |
| 75 | + rustup target add thumbv7em-none-eabi &&\ |
| 76 | + rustup component add rustfmt &&\ |
| 77 | + rustup component add clippy &&\ |
| 78 | + rustup component add rust-src &&\ |
| 79 | + CARGO_HOME=/opt/cargo cargo install cbindgen --version 0.26.0 --locked &&\ |
| 80 | + CARGO_HOME=/opt/cargo cargo install bindgen-cli --version 0.69.4 --locked --target-dir=/tmp/bindgen-target &&\ |
| 81 | + CARGO_HOME=/opt/cargo cargo install --path /mnt/prost-build-proto --locked &&\ |
| 82 | + rm -r /tmp/bindgen-target /opt/cargo/registry/index /opt/cargo/.global-cache |
135 | 83 |
|
136 | 84 | # Until cargo vendor supports vendoring dependencies of the rust std libs we
|
137 | 85 | # need a copy of this file next to the toml file. It also has to be world
|
138 | 86 | # writable so that invocations of `cargo vendor` can update it. Below is the
|
139 | 87 | # tracking issue for `cargo vendor` to support rust std libs.
|
140 | 88 | # https://github.com/rust-lang/wg-cargo-std-aware/issues/23
|
141 |
| -RUN cp "$(rustc --print=sysroot)/lib/rustlib/src/rust/Cargo.lock" "$(rustc --print=sysroot)/lib/rustlib/src/rust/library/test/" |
142 |
| -RUN chmod 777 $(rustc --print=sysroot)/lib/rustlib/src/rust/library/test/Cargo.lock |
143 |
| - |
144 |
| -COPY tools/prost-build-proto prost-build-proto |
145 |
| -RUN CARGO_HOME=/opt/cargo cargo install --path prost-build-proto --locked |
146 |
| - |
147 |
| -# Clean temporary files to reduce image size |
148 |
| -RUN rm -rf /var/lib/apt/lists/* |
| 89 | +RUN cp "$(rustc --print=sysroot)/lib/rustlib/src/rust/Cargo.lock" "$(rustc --print=sysroot)/lib/rustlib/src/rust/library/test/" &&\ |
| 90 | + chmod 777 $(rustc --print=sysroot)/lib/rustlib/src/rust/library/test/Cargo.lock |
0 commit comments