Hi,
I'm trying to migrate from my Github site and moving it to sr.ht Pages.
I've setup a .build.yml file, but my build job[1] seems to be stuck when installing package dependencies.
From the docs it seems like using `yay -Suy` to install packages should be fine, but it seems to be hanging potentially waiting on a Yes/No prompt.
I'm curious if anyone sees anything obvious I'm missing.
1. https://builds.sr.ht/~mcritchlow/job/641308
--
Thanks in advance,
Matt
On 12/3/21 13:51, Matt Critchlow wrote:
> Hi,> > I'm trying to migrate from my Github site and moving it to sr.ht Pages.> > I've setup a .build.yml file, but my build job[1] seems to be stuck when > installing package dependencies.> > From the docs it seems like using `yay -Suy` to install packages should > be fine, but it seems to be hanging potentially waiting on a Yes/No prompt.> > I'm curious if anyone sees anything obvious I'm missing.
`yes y | yay -Syu ruby-bundler` seems to work, or you could include it
in packages: (https://man.sr.ht/builds.sr.ht/#build-manifests)
> 1. https://builds.sr.ht/~mcritchlow/job/641308
--
earnest ma (they/he) <me@earne.link>
https://earnestma.com
you can specify the packages to be installed separately from the tasks:
image: archlinux
packages:
- ruby-bundler
[the rest of the manifest...]
refer to the builds.sr.ht manifest reference for more information.
https://man.sr.ht/builds.sr.ht/manifest.md
On Fri, Dec 03, 2021 at 08:55:41PM +0200, Sol Fisher Romanoff wrote:
>you can specify the packages to be installed separately from the tasks:>>image: archlinux>packages:> - ruby-bundler>[the rest of the manifest...]>>refer to the builds.sr.ht manifest reference for more information.>https://man.sr.ht/builds.sr.ht/manifest.md
Ah, packages. How did I miss that. Thank you :)
--
Thanks,
Matt Critchlow