cw_reader: rename tool #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LD1125H Firmware Builder | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
# Checkout repository | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Install ARM GCC toolchain | |
- name: Install ARM GCC Toolchain and CMake | |
run: | | |
sudo apt update | |
sudo apt install -y gcc-arm-none-eabi binutils-arm-none-eabi cmake | |
# Create build directory and run CMake | |
- name: Configure and Build | |
run: | | |
mkdir -p build | |
cd build | |
cmake .. | |
make | |
# Collect all .bin files | |
- name: Upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binaries | |
path: build/*.bin | |