Skip to content

Commit 677064f

Browse files
committed
Add build-essentials + 1.0.0 Ceedling release
1 parent 9655dd3 commit 677064f

File tree

13 files changed

+11
-5
lines changed

13 files changed

+11
-5
lines changed

build/arm-none-eabi-plugins/assets/shell/welcome

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ echo " This container includes:"
55
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Ceedling, Unity, CMock & CException"; fi
66
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Ruby 3"; fi
77
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Essential Unix utilities"; fi
8+
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Essential build tools (make, etc.)"; fi
89
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * nano for simple text editing"; fi
910
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * GNU Compiler Collection (gcc, etc.) for ARM"; fi
1011
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Standard C libraries (ARM)"; fi

build/arm-none-eabi-plugins/docker/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN set -ex \
4040
&& apt update \
4141
&& apt -y upgrade \
4242
&& apt install -y \
43+
build-essential \
4344
coreutils \
4445
gcc-arm-none-eabi \
4546
gcovr \

build/arm-none-eabi/assets/shell/welcome

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ echo " This container includes:"
55
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Ceedling, Unity, CMock & CException"; fi
66
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Ruby 3"; fi
77
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Essential Unix utilities"; fi
8+
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Essential build tools (make, etc.)"; fi
89
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * nano for simple text editing"; fi
910
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * GNU Compiler Collection (gcc, etc.) for ARM"; fi
1011
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Standard C libraries (ARM)"; fi

build/arm-none-eabi/docker/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN set -ex \
4040
&& apt update \
4141
&& apt -y upgrade \
4242
&& apt install -y \
43+
build-essential \
4344
coreutils \
4445
gcc-arm-none-eabi \
4546
libnewlib-arm-none-eabi \

build/base/assets/gems/Gemfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,4 @@ gem "constructor", "~> 2"
2121
gem "thor", "~> 1.3"
2222
gem "deep_merge", "~> 1.2"
2323
gem "unicode-display_width", "~> 3.1"
24-
25-
#these will be used if present, but ignored otherwise
26-
#gem "curses"
27-
#gem "pty", :platforms => [ :ruby ] #automatically included on *nix platforms
28-
#gem "popen4", :platforms => [ :mswin ]
24+
gem "erb", "~> 4.0"
-2.11 MB
Binary file not shown.
5 MB
Binary file not shown.

build/base/contents.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
- {platform: '*', entry: 'Ceedling, Unity, CMock & CException'}
33
- {platform: '*', entry: 'Ruby 3'}
44
- {platform: '*', entry: 'Essential Unix utilities'}
5+
- {platform: '*', entry: 'Essential build tools (make, etc.)'}
56
- {platform: '*', entry: 'nano for simple text editing'}

build/base/packages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
- coreutils
3+
- build-essential # Make, etc.
34
- nano # Simple, helpful text editor
45
- ruby=1:3.1 # Ruby 3 in Debian packages
56
- zsh # Z shell

build/plugins/assets/shell/welcome

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ echo " This container includes:"
55
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Ceedling, Unity, CMock & CException"; fi
66
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Ruby 3"; fi
77
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Essential Unix utilities"; fi
8+
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Essential build tools (make, etc.)"; fi
89
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * nano for simple text editing"; fi
910
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * The GNU Compiler Collection (gcc, etc.)"; fi
1011
if [[ "$CONTAINER_PLATFORM" == * ]]; then echo " * Standard C libraries"; fi

0 commit comments

Comments
 (0)