Skip to content

Commit 1481d6d

Browse files
committed
Update CI to run toolchain version and full build
The workflow now prints the installed `arm-none-eabi-g++` version before building, improving visibility into the toolchain used in CI. It also replaces the bootloader-only Makefile invocation with `scripts/build_all.sh`, so CI builds the full set of artifacts instead of just `bootloader-tftp`.
1 parent dfe3b3d commit 1481d6d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
wget -qO /tmp/arm-toolchain.tar.xz "$TOOLCHAIN_URL"
3030
sudo tar -xJf /tmp/arm-toolchain.tar.xz -C /opt
3131
echo "$TOOLCHAIN_DIR/bin" >> "$GITHUB_PATH"
32-
- name: make bootloader-tftp
32+
- name: version
33+
run: arm-none-eabi-g++ --version
34+
- name: build all
3335
run: |
34-
cd bootloader-tftp
35-
make -f Makefile.GD32 clean
36-
make -f Makefile.GD32
37-
cd -
36+
cd scripts
37+
./build_all.sh

0 commit comments

Comments
 (0)