0

While it seems less valuable to emulate Arduino in a CI/CD setup, are there any experiences/best practices for collaborative teams to automate their acceptance tests where a real Arduino is integrated into a CI/CD toolchain (or, what are comparable practices)?

Minimal example of acceptance testing:

  • compilation is successful for a given compiler version.
J. Doe
  • 127
  • 1
  • 6

1 Answers1

1

There are different approaches around. I can only point you to some of them:

As a valuable commenter mentioned on your previous question - this does not cover the attached hardware testing (sensors/ motors) - this has to be "integrated" via a test lab station, which you have to control manually (or semi-automated via lab equipment) on defined release/version changes

Codebreaker007
  • 1,331
  • 1
  • 6
  • 14
  • thank you so much @Codebreaker007! Trying out approach A to compile the controller code for an open source ventilator project :-) – J. Doe Apr 09 '20 at 11:32