Newer
Older
M5StickCPlus_FactoryTest2022 / SampleSrc / _AllBuildTest.sh
@motoki miura motoki miura on 22 Feb 2024 207 bytes _AllBuildTest
#!/bin/bash

for p in *.ino ; do
  echo ${p} Build Test
  echo ${p} >> log.txt
  cp ${p} TestBuild/TestBuild.ino
  echo ${p} > TestBuild/ino_filename
  cd TestBuild
  ./compile.sh 2>>../log.txt
  cd ..
done