-
-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to latest circle-stdlib (#2697)
- Loading branch information
1 parent
9724aed
commit 3125d4a
Showing
5 changed files
with
20 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:24.04 | ||
RUN apt-get update | ||
RUN apt-get install software-properties-common -y | ||
RUN add-apt-repository ppa:git-core/ppa -y | ||
RUN apt-get install wget git build-essential -y | ||
RUN wget -q https://cmake.org/files/v3.13/cmake-3.13.0-Linux-x86_64.sh | ||
RUN sh cmake-3.13.0-Linux-x86_64.sh --skip-license --prefix=/usr | ||
RUN cd /opt && wget -q https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 | ||
RUN cd /opt && tar xjf gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 | ||
ENV PATH=/opt/gcc-arm-none-eabi-9-2020-q2-update/bin/:$PATH | ||
RUN wget -q https://cmake.org/files/v3.30/cmake-3.30.3-linux-x86_64.sh | ||
RUN sh cmake-3.30.3-linux-x86_64.sh --skip-license --prefix=/usr | ||
RUN cd /opt && wget -q https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz | ||
RUN cd /opt && tar -xf arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi.tar.xz | ||
ENV PATH=/opt/arm-gnu-toolchain-13.3.rel1-x86_64-arm-none-eabi/bin/:$PATH | ||
RUN mkdir /src | ||
WORKDIR /src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters