File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
3237WORKDIR /workspace
You can’t perform that action at this time.
0 commit comments