Monday, April 10, 2023
apps@conference.yunohost.org
April
Mon Tue Wed Thu Fri Sat Sun
          1
2
3
4
5
6
7
8
9
10
11
12 13 14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
             

[01:50:14] <Yunohost Git/Infra notifications> App ecko failed all tests in job [#14900](https://ci-apps.yunohost.org/ci/job/14900) :(
[05:39:33] <Yunohost Git/Infra notifications> App audiobookshelf rises from level 7 to 8 in job [#14905](https://ci-apps.yunohost.org/ci/job/14905) !
[06:10:41] <Yunohost Git/Infra notifications> [my_webapp_ynh] @joeldebruijn [commented](https://github.com/YunoHost-Apps/my_webapp_ynh/issues/112#issuecomment-1501440161) on [issue #112](https://github.com/YunoHost-Apps/my_webapp_ynh/issues/112) Documentation doesnt explain what is the SFTP username: Just to add the need of additional explanation: I dont have Yunohost as a mailserver so I missed this specific mail. Don...
[11:02:54] <Yunohost Git/Infra notifications> App dex goes down from level 8 to 6 in job [#14912](https://ci-apps.yunohost.org/ci/job/14912)
[14:11:55] <Yunohost Git/Infra notifications> App matrix-puppet-discord rises from level 0 to 6 in job [#14916](https://ci-apps.yunohost.org/ci/job/14916) !
[14:22:22] <Yunohost Git/Infra notifications> App mediawiki failed all tests in job [#14917](https://ci-apps.yunohost.org/ci/job/14917) :(
[15:34:40] <oufmilo[m]> If someone can help me
https://paste.yunohost.org/xicovoziji.sql
[15:35:28] <oufmilo[m]> restart the current shell or run source "$HOME/.cargo/env"
i don't know how can i code this in the install script
[15:45:54] <Aleks (he/him/il/lui)> > restart the current shell or run source "$HOME/.cargo/env"
> i don't know how can i code this in the install script

just run `source "$HOME/.cargo/env"` ..?
[15:48:59] <tituspijean[m]> Can you share the app's code?
Anyways, in this instance, I guess `$HOME` should be set to `$final_path`, assuming cargo was installed there
[15:59:55] <tituspijean[m]> What's the output with that code?
[16:04:35] <oufmilo[m]> > <@titus:pijean.ovh> What's the output with that code?

https://paste.yunohost.org/ogudodafop.sql
[16:04:40] <tituspijean[m]> btw aleks: https://paste.yunohost.org/raw/awikopuvuf
this happens with and without a `[resources.permission]` block in the manifest (the app does not need it)
[16:06:24] <Aleks (he/him/il/lui)> yeah should be fixed by https://github.com/YunoHost/yunohost/commit/aa43e6c22b9d3edf396890675b46cf934a591b64
[16:06:58] <tituspijean[m]> > https://paste.yunohost.org/ogudodafop.sql

/var/www/calckey/.cargo/env: No such file or directory
where do you install Cargo?
[16:08:52] <oufmilo[m]> > <@titus:pijean.ovh> /var/www/calckey/.cargo/env: No such file or directory
> where do you install Cargo?

that's a good question , rust install the component cargo himself but i don't know where
[16:09:58] <Aleks (he/him/il/lui)> since curl|bash is ran as root, I guess it installs in /root/ ...which is not optimal
[16:10:07] <tituspijean[m]> Can you share your whole code? Or I guess you can check rust documentation and see if it has a flag to choose its location
[16:10:17] <Aleks (he/him/il/lui)> maybe `curl https://sh.rustup.rs -sSf | su $app -c 'sh -s -- -y'` could be better idk
[16:18:37] <oufmilo[m]> > <@titus:pijean.ovh> Can you share your whole code? Or I guess you can check rust documentation and see if it has a flag to choose its location

https://paste.yunohost.org/dinuyejuxo.bash
[16:19:58] <oufmilo[m]> > <@Alekswag:matrix.org> maybe `curl https://sh.rustup.rs -sSf | su $app -c 'sh -s -- -y'` could be better idk

interesting with your cmd
https://paste.yunohost.org/gabakaxara.sql
[16:21:37] <Aleks (he/him/il/lui)> meh
[16:21:38] <Aleks (he/him/il/lui)> ah yes Cargo's env script is probably not designed to be ran with `set -eu` ...
[16:21:54] <Aleks (he/him/il/lui)> you can also just manually tweak `PATH` manually with `export PATH="$install_dir/.cargo/bin:$PATH"`
[16:22:06] <Aleks (he/him/il/lui)> (instead of `source ...`)
[16:32:36] <oufmilo[m]> > <@Alekswag:matrix.org> you can also just manually tweak `PATH` manually with `export PATH="$install_dir/.cargo/bin:$PATH"`

In progress... 🤞
[16:37:35] <oufmilo[m]> Thanks ! it's done
https://paste.yunohost.org/biticenete.sql
it's ok ! now i should remove all the warning info !
[16:50:35] <Yunohost Git/Infra notifications> App signaturepdf rises from level 7 to 8 in job [#14921](https://ci-apps.yunohost.org/ci/job/14921) !
[17:24:05] <oufmilo[m]> > Thanks ! it's done
> https://paste.yunohost.org/biticenete.sql
> it's ok ! now i should remove all the warning info !

ynh_exec_warn_less doesn't work for the warning info
[17:25:23] <Aleks (he/him/il/lui)> we can't help you without seeing the actual piece of code, devil is in the details ...
[17:27:30] <oufmilo[m]> > <@Alekswag:matrix.org> we can't help you without seeing the actual piece of code, devil is in the details ...

Oups sorry !!

https://paste.yunohost.org/ijunikijof.bash
[17:33:19] <Aleks (he/him/il/lui)> probably gotta have that `ynh_exec_warn_less` in front of the `su $app` on the same line
[17:33:25] <Aleks (he/him/il/lui)> rather than in front of `curl`
[17:56:11] <oufmilo[m]> > <@Alekswag:matrix.org> probably gotta have that `ynh_exec_warn_less` in front of the `su $app` on the same line

thank you very much without you I would never have made it
[21:24:45] <Yunohost Git/Infra notifications> App calckey rises from level 0 to 7 in job [#14925](https://ci-apps.yunohost.org/ci/job/14925) !
[22:00:23] <Yunohost Git/Infra notifications> App scrutiny rises from level 1 to 7 in job [#14926](https://ci-apps.yunohost.org/ci/job/14926) !