summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonardo Bras <leobras.c@gmail.com>2023-06-01 17:38:16 -0300
committerPaul E. McKenney <paulmck@kernel.org>2023-06-03 08:20:53 -0700
commit2714529385b76bd14d4e9243cc779f9022050d15 (patch)
tree6becc6c400fa167affb7cab5dc627bdab05e68ce
parent83c6f2379c11435e9d0972e0018ae98456ac0f20 (diff)
downloadperfbook-2714529385b76bd14d4e9243cc779f9022050d15.tar.gz
utilities/gitlab-ci: Fix gitlab-ci due to Arch Linux deprecating texlive-most
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@gmail.com> Reviewed-by: Akira Yokosawa <akiyks@gmail.com> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
-rw-r--r--utilities/gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
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