[03:41:11] *** Quits: NavitLogger (~NavitLogg@176.126.247.29) (Ping timeout: 260 seconds) [03:45:13] *** Joins: xenos1984 (~xenos1984@static-35-123-224-77.ipcom.comunitel.net) [03:45:13] *** ChanServ sets mode: +v xenos1984 [04:13:47] *** Quits: xenos1984 (~xenos1984@static-35-123-224-77.ipcom.comunitel.net) (Quit: Leaving.) [04:21:32] *** Quits: aerostitch (~aerostitc@c-24-23-228-135.hsd1.ca.comcast.net) (Quit: Leaving) [08:25:06] *** Joins: naggety (~naggety@208.red-2-141-81.dynamicip.rima-tde.net) [09:19:30] *** Quits: Celelibi (celelibi@2a01:e35:8a65:11d0:215:afff:fe49:d5cd) (*.net *.split) [09:32:37] *** Joins: Celelibi (celelibi@2a01:e35:8a65:11d0:215:afff:fe49:d5cd) [10:13:56] *** Quits: Celelibi (celelibi@2a01:e35:8a65:11d0:215:afff:fe49:d5cd) (*.net *.split) [10:27:10] *** Joins: Celelibi (celelibi@2a01:e35:8a65:11d0:215:afff:fe49:d5cd) [10:51:30] *** Quits: Celelibi (celelibi@2a01:e35:8a65:11d0:215:afff:fe49:d5cd) (*.net *.split) [11:05:02] *** Joins: Celelibi (celelibi@2a01:e35:8a65:11d0:215:afff:fe49:d5cd) [14:37:41] *** Quits: naggety (~naggety@208.red-2-141-81.dynamicip.rima-tde.net) (Ping timeout: 252 seconds) [15:00:55] *** Joins: xenos1984 (~xenos1984@dyn231-156.eduroam.net.utu.fi) [15:00:55] *** ChanServ sets mode: +v xenos1984 [15:05:42] *** Quits: xenos1984 (~xenos1984@dyn231-156.eduroam.net.utu.fi) (Client Quit) [15:41:49] *** Joins: xenos1984 (~xenos1984@193.185.150.2) [15:41:49] *** ChanServ sets mode: +v xenos1984 [16:17:37] *** Joins: mvglasow (~mvglasow@ipservice-092-217-015-016.092.217.pools.vodafone-ip.de) [17:45:30] *** Quits: xenos1984 (~xenos1984@193.185.150.2) (Ping timeout: 252 seconds) [18:16:07] hi there [18:23:50] *** Joins: aerostitch (~aerostitc@c-24-23-228-135.hsd1.ca.comcast.net) [18:32:38] hi KaZeR [18:32:49] any chance to look on the my code? [18:46:00] hi ilovekiruna [18:46:08] yeah give me 30-60 min and we [18:46:10] can do it [18:49:46] ok, ping you again in 60 mins [19:27:50] *** Joins: xenos1984 (~xenos1984@193.185.150.2) [19:27:50] *** ChanServ sets mode: +v xenos1984 [19:57:14] hi KaZeR [20:14:59] are you ready? [20:23:56] *** Quits: xenos1984 (~xenos1984@193.185.150.2) (Ping timeout: 260 seconds) [20:51:55] ilovekiruna: sorry [20:51:57] ready now [20:54:44] great [20:54:47] hi KaZeR [20:54:54] have you already seen the problem? [20:56:09] your issue is about uids in docker right? [20:56:25] somehow [20:56:35] circleci documentedt it here [20:56:37] https://circleci.com/docs/2.0/high-uid-error/ [20:56:58] which is from here: https://circleci.com/gh/hoehnp/navit/300 [21:01:27] in your image you still have some big UIDS: [21:01:29] /etc/login.defs:UID_MIN 100000 [21:01:31] /etc/login.defs:GID_MIN 100000 [21:01:58] you found those? [21:02:27] yep [21:02:58] how? [21:03:05] grep :) [21:03:21] docker run -ti hoehnp/sailfishos-platform-sdk:2.2.1.18 /bin/bash [21:03:35] and then grep -ri 100000 /etc/ [21:03:42] since circleci complains about the value 100000 [21:04:14] I know, maybe i understood the messagae wrong [21:04:28] I understood that a file needs to have that uid, not the settings [21:05:11] it says that it's about a mapping issue, so remapping a uid from docker to the host [21:06:25] ha! [21:06:37] # find / -uid 100000 [21:06:46] exactly, there i didnt find anything [21:06:49] /srv/mer/toolings/SailfishOS-2.2.1.18/var/spool/mail/nemo [21:06:51] /srv/mer/toolings/SailfishOS-2.2.1.18/home/nemo [21:06:53] /srv/mer/toolings/SailfishOS-2.2.1.18/home/nemo/.bashrc [21:06:55] /srv/mer/toolings/SailfishOS-2.2.1.18/home/nemo/.bash_logout [21:06:57] /srv/mer/toolings/SailfishOS-2.2.1.18/home/nemo/.bash_profile [21:06:59] probably these actually [21:07:21] ok, now again [21:07:31] I think I get the issue a bit now [21:07:39] probably I mad the image clean by itself [21:07:53] if you run a chown as part of the build after the sed, it should work [21:07:53] but with the second script I made it unclean again :-( [21:19:12] do you know how i could build the image in one go? [21:23:24] pretty much everything you do in build.sh could be done in Dockerfile [21:24:37] is the goal of your build.sh to fix the user id ? [21:26:00] to be honest, I found build.sh and Dockerfile in the repo by coderus [21:26:05] am just adopting it [21:26:56] generally I would prefer merging everything in one file [21:28:27] ha ok. yeah i think that this can be simplified [21:33:17] FROM hoehnp/sailfishos-platform-sdk-base:2.2.1.18 [21:33:24] where is the dockerfile for this base image ? [21:33:39] both on my computer and also on dockerhub [21:41:03] https://hub.docker.com/r/hoehnp/sailfishos-platform-sdk-base/ looks like the dockerfile isn't public [21:41:27] it isnt a dockerfile, it is an imported image from a tarred chroot [21:43:26] *** Quits: mvglasow (~mvglasow@ipservice-092-217-015-016.092.217.pools.vodafone-ip.de) (Quit: Leaving) [21:45:40] can you share the script used to build it? [21:45:42] afk 1h [21:46:10] KaZeR: https://github.com/hoehnp/docker-sailfishos-sdk [21:47:51] ha shit i missed line 27 [21:48:03] was focusing on line 35 [21:48:14] but anyway right now not working, my dockerfile [21:48:46] ok i'll have another look in about 1h [21:49:17] ok [21:49:19] thanks [21:49:26] anyhow you already helped me a lot [23:16:59] KaZeR: are you back? [23:28:25] yep [23:30:24] finished at least that uid issue :-D [23:36:58] ha! nice! [23:37:50] now changing the build script of sailfish, need to make adjustments for running in container, which I do by sed [23:38:05] has anyone done sth on genesis' win32 issue? [23:39:28] not yet i don't think so. jkoan was looking into it a bit i believe? [23:39:47] i ask because you remember i started working on it ;-) [23:41:27] ha it was you! i knew someone did :D [23:43:42] when the container finally works, I would make a pull request, can you then still check today? [23:56:58] KaZeR: I think I finally got it! [23:57:01] at least it is building