update firmware to V2.1.1 #61
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Setup Python | |
uses: actions/[email protected] | |
- uses: actions/checkout@v3 | |
- name: Setup riscv gnu/gcc toolchain | |
uses: ChnMasterOG/[email protected] | |
- run: riscv-none-elf-gcc --version | |
- name: make | |
run: | | |
cd ./mounriver_project | |
python replace_path.py | |
echo "build KEYBOARD_CH582M..." | |
cd ./KEYBOARD_CH582M/obj | |
make | |
echo "build RF_CH582M..." | |
cd ../../ | |
cd ./RF_CH582M/obj | |
make | |
echo "build VLD_CH582M..." | |
cd ../../ | |
cd ./VLD_CH582M/obj | |
make |