Skip to content

Commit

Permalink
Added subproject load to workflow yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
avtoku committed Nov 22, 2024
1 parent 3db8383 commit abcc7c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build_pixracer_pro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: install toolchain
run: sudo apt update
run: sudo apt -y install gcc-arm-none-eabi
- name: check toolchain
run: arm-none-eabi-gcc --version
- name: checkout submodules
run: git submodule update --init --recursive
- name: build
run: cd pixracer_pro && mkdir build && cd build && cmake .. && make
2 changes: 2 additions & 0 deletions .github/workflows/build_varmint_10X.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ jobs:
run: sudo apt -y install gcc-arm-none-eabi
- name: check toolchain
run: arm-none-eabi-gcc --version
- name: checkout submodules
run: git submodule update --init --recursive
- name: build
run: cd varmint_10X && mkdir build && cd build && cmake .. && make

0 comments on commit abcc7c3

Please sign in to comment.