Skip to content

Commit

Permalink
ciimage/arch: attempt to fix Arch CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sp1ritCS committed Jul 17, 2024
1 parent 10a405b commit ba76b63
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ci/ciimage/arch/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pkgs=(
ninja make git sudo fakeroot autoconf automake patch
libelf gcc gcc-fortran gcc-objc vala rust bison flex cython go dlang-dmd
mono boost qt5-base gtkmm3 gtest gmock protobuf gobject-introspection
itstool gtk3 java-environment gtk-doc llvm clang sdl2 graphviz
itstool glib2 glib2-devel gtk3 java-environment gtk-doc llvm clang sdl2 graphviz
doxygen vulkan-validation-layers openssh mercurial gtk-sharp-2 qt5-tools
libwmf cmake netcdf-fortran openmpi nasm gnustep-base gettext
python-lxml hotdoc rust-bindgen qt6-base qt6-tools wayland wayland-protocols
Expand All @@ -25,9 +25,16 @@ AUR_USER=docker
PACMAN_OPTS='--needed --noprogressbar --noconfirm'

# Patch config files
pacman -Syu $PACMAN_OPTS ed
sed -i 's/#Color/Color/g' /etc/pacman.conf
sed -i 's,#MAKEFLAGS="-j2",MAKEFLAGS="-j$(nproc)",g' /etc/makepkg.conf
sed -i "s,PKGEXT='.pkg.tar.zst',PKGEXT='.pkg.tar',g" /etc/makepkg.conf
ed /etc/makepkg.conf<<EOF
/^OPTIONS=/
s/debug/!debug/
w
q
EOF

# Install packages
pacman -Syu $PACMAN_OPTS "${pkgs[@]}"
Expand Down

0 comments on commit ba76b63

Please sign in to comment.