This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
see submodule ;P #191
Workflow file for this run
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: CI Build | |
# Define the trigger event(s) | |
on: push | |
# Jobs run in parallel by default, each runs steps in sequence | |
jobs: | |
compile-firmware: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out this repo and submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name : Update the submodules | |
run: | | |
git submodule update --init --recursive | |
git submodule update --recursive --remote | |
- name: Build stm32CubeIDE project | |
uses: xanderhendriks/[email protected] | |
with: | |
project-path: 'Project/DAQ_System' | |
project-target: 'DAQ_System/Debug' | |