Commit 9ce1252
committed
the linux build produced an AppImage without kivy:
user@disp6152:~/Downloads/artifacts0$ ./helloWorld.AppImage
Traceback (most recent call last):
File "/tmp/.mount_helloWxxC0Dh/opt/src/main.py", line 4, in <module>
from kivy.config import Config
ModuleNotFoundError: No module named 'kivy'
user@disp6152:~/Downloads/artifacts0$
Checking the job output, it hit permission issues early on. Huh, in gitlab I think I was root, but I'll add `sudo` and see if the next build works.
Run build/linux/buildAppImage.sh
build/linux/buildAppImage.sh
shell: /bin/bash --noprofile --norc -e -o pipefail {0}
+ PYTHON_PATH=/usr/bin/python3.7
+ apt-get update
Reading package lists...
E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission denied)
E: Unable to lock directory /var/lib/apt/lists/
W: Problem unlinking the file /var/cache/apt/pkgcache.bin - RemoveCaches (13: Permission denied)
W: Problem unlinking the file /var/cache/apt/srcpkgcache.bin - RemoveCaches (13: Permission denied)
+ apt-get -y install python3.7 python3-pip wget rsync fuse
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?1 parent 975b699 commit 9ce1252
2 files changed
+16
-16
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments