Arch Linux folks deprecated the texlive-most package group in favor of texlive-meta, which should contain the same packages with an aditional tool. Fix this script to use texlive-meta, so the gitlab pipeline is able to build the pdfs. Signed-off-by: Leonardo Bras <leobras.c@xxxxxxxxx> --- utilities/gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml index 42eda60f..6c3ec1e6 100644 --- a/utilities/gitlab-ci.yml +++ b/utilities/gitlab-ci.yml @@ -19,7 +19,7 @@ generate_pdfs: stage: build before_script: - - pacman --noconfirm -Sy texlive-most fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation + - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache - wget https://sourceforge.net/projects/fig2ps/files/latest/download -O /dev/shm/fig2ps.tbz - mkdir /dev/shm/build && tar -xjf /dev/shm/fig2ps.tbz -C /dev/shm/build --strip-components=1 -- 2.40.1