I am currently trying to find better ways to deploy my c++ app on raspberry pi.
At the moment it’s manual. But for testing purposes I want to be able to quickly deploy via a CI/CD method that I am using for my other web app.
I’m currently using circleci for my none raspberry pi projects.
What are you using?
Re: What is your deployment workflow for raspberry pi?
As boring as possible: I cross-compile on my dev box, then rsync over. So essentially:
Code: Select all
make && rsync the-binary root@pi:
info-beamer hosted - A user and programmer friendly digital signage platform for the Pi: https://info-beamer.com/hosted
Re: What is your deployment workflow for raspberry pi?
My commercial apps follow the usual windows procedure they call back to my web portal on startup to check for updates and if a new version exists prompt for permission to update or on kiosk apps automatically update.