aboutsummaryrefslogtreecommitdiffhomepage
path: root/AppImage.yml
AgeCommit message (Collapse)AuthorFilesLines
5 daysAppImage.yml: download tarball from git.fmsbw.deHEADmaster-fmsbw-cimasterRobin Haberkorn1-1/+1
5 daysAppImage.yml: removed the sudo - it won't work in the ubuntu22 podRobin Haberkorn1-1/+1
2024-05-21AppImage: hopefully fixed launching the Jupyter notebookRobin Haberkorn1-1/+1
2024-05-21AppImage: fixed Jupyter and ILua modes on all but my own systemRobin Haberkorn1-6/+8
* We cannot use the Pip-installed launchers since they have hardcoded paths. Instead we reference python3 explicitly in the /usr/bin/applause launcher. * For some strange reason, the site-packages directory where all of the relevant packages are put is not in sys.path. So also export it via $PYTHONPATH.
2024-05-21AppImage: possibly fixed the ILua and Jupyter modesRobin Haberkorn1-2/+4
* when using a CI-built version, it would complain about missing Python modules and cannot find the `ilua` executable
2024-05-20AppImages contain Jupyter notebook support nowRobin Haberkorn1-7/+20
* that's their default mode, but the ILua console and Lua prompt can also be accessed by passing additional commandline parameters. * README: we can install our ILua fork without explicitly cloning the repository which simplifies matters a bit.
2024-05-20added AppImage via pkg2appimageRobin Haberkorn1-0/+53
* Docker turned out to be impractical since you cannot connect a dockerized Jack client to a Jack server on the host as library versions would have to match exactly. Neither did I get Netjack to run in Docker. Also when running in Docker, it would be tricky to get gnuplot to work (and Tcl/Tk support in the future). Especially the Jupyter notebook packaging would have been a lot easier, though with Docker. * AppImage will automatically avoid bundling libjack and require a compatible libjack on the host instead. * Using pkg2appimage ensures we can pull in dependencies as Debian packages. * This version of AppImage.yml does not contain Jupyter notebooks.