Skip to content

Commit bf18d55

Browse files
committed
Fix
1 parent ff60115 commit bf18d55

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/pr-code-style-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- name: Checkout Code with Submodules
1313
uses: actions/checkout@v3
1414
with:
15-
submodules: recursive # ✅ Ensures all submodules are pulled
16-
fetch-depth: 0 # ✅ Ensures full history
15+
submodules: recursive
16+
fetch-depth: 0
1717

1818
- name: Configure CMake
19-
run: cmake -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -B build/check
19+
run: cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -B build/check
2020

2121
- name: Verify compile_commands.json exists
2222
run: ls build/check/compile_commands.json

docker/Dockerfile.check

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ ENV AS=/usr/bin/arm-linux-gnueabihf-as \
2727
CXX=/usr/bin/arm-linux-gnueabihf-g++ \
2828
LD=/usr/bin/arm-linux-gnueabihf-ld
2929

30-
RUN echo "alias ll='ls -alF --color=auto'" >> /etc/bash.bashrc
30+
RUN echo "alias ll='ls -alF --color=auto'" >> /etc/bash.bashrc
31+
32+
RUN apt-get update -q && \
33+
apt-get install -y -q \
34+
git \
35+
&& rm -rf /var/lib/apt/lists/*
3136

3237
WORKDIR /workspace

0 commit comments

Comments
 (0)