Snapcraft Live - Debugging snap builds

## Building snaps - debugging builds ### Goal Understand the tools provided to debug the build process when making a snap ### Agenda * Point everyone at last weeks video - quick reminder on the tools we need * Find something to snap * Fail at snapping it - Use debugging tools to find out why we failed - Fix it! * (Insert success image here) * Meanwhile: answer questions in chat * Bonus: Snap something on user request ### Reminder - prep * Install snapd (see snapcraft docs) * Install snapcraft `sudo snap install snapcraft --classic` * Install multipass `sudo snap install multipass --classic --beta` ### Find something to snap * (or python, or go) ### Tools we will use / things we learn `snapcraft --debug` `source-subdir:` `apt search libsdl2` `dpkg -S /usr/lib...` `` `dlocate libsdl2` `snapcraft --s
Back to Top