Skip to content

Commit

Permalink
Merge branch 'main' of github.com:stgloorious/stm32-speech-recognition
Browse files Browse the repository at this point in the history
  • Loading branch information
stgloorious committed Jun 6, 2024
2 parents ba8d81e + 35ef481 commit 9c8ec76
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install dependencies
run: |
sudo apt-get install build-essential cmake gcc-arm-none-eabi python3-numpy python3-pil unzip
- name: Prepare Python environment
run: |
cd ml
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- name: Train
run: |
cd ml
python train.py
- name: Build
run: |
sudo apt-get install build-essential cmake gcc-arm-none-eabi python3-numpy python3-pil unzip
cmake -B build
make -C ${{github.workspace}}/build
Expand Down

0 comments on commit 9c8ec76

Please sign in to comment.