log reset test #757
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: build | |
on: | |
push: | |
jobs: | |
build: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
container: leemagnusson/arm-gcc:latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
submodules: recursive | |
- name: make otp test | |
run: | | |
cd peripheral/stm32g4/otp | |
make NAME=motor_molex REV=MR0 NUM=25 GCC_PATH=/gcc/bin | |
# also check for failing cases | |
! make GCC_PATH=/gcc/bin | |
! make NAME=fail REV=MR0 NUM=25 GCC_PATH=/gcc/bin | |
! make REV=MR0 GCC_PATH=/gcc/bin | |
- name: make test | |
run: | | |
cd test | |
make test_logger | |
./test_logger |