Skip to content

Commit 9ac16c0

Browse files
committed
Update CI to run full build script
Replace the workflow’s bootloader-only make step with the shared `scripts/build_all.sh` command. This makes CI use the centralized build path and compile all targets instead of only `bootloader-tftp`.
1 parent b85c94b commit 9ac16c0

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ jobs:
3131
echo "$TOOLCHAIN_DIR/bin" >> "$GITHUB_PATH"
3232
- name: version
3333
run: arm-none-eabi-g++ --version
34-
- name: make bootloader-tftp
34+
- name: build all
3535
run: |
36-
cd bootloader-tftp
37-
make -f Makefile.GD32 clean
38-
make -f Makefile.GD32
39-
cd -
36+
cd scripts
37+
./build_all.sh

0 commit comments

Comments
 (0)