From aa05cfa29626c95c26df6bc7e746ffc42fd3a3e8 Mon Sep 17 00:00:00 2001 From: s3lph Date: Sun, 30 May 2021 18:09:03 +0200 Subject: [PATCH] Fix Archlinux build --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e196fb2..c2d21eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -105,7 +105,7 @@ build_debian: build_archlinux: stage: build - image: archlinux/base:latest # Use an archlinux image instead of the customized debian image. + image: archlinux:latest # Use an archlinux image instead of the customized debian image. script: - find package/archlinux -name .gitkeep -delete # Install dependencies @@ -131,12 +131,12 @@ build_archlinux: - sed -re "s/__VERSION__/${SPACEAPI_SERVER_VERSION}/g" -i PKGBUILD - sudo -u nobody makepkg -c # Run namcap - - sudo -u nobody namcap *.pkg.tar.xz + - sudo -u nobody namcap *.pkg.tar.* # Generate checksum - - sha256sum *.pkg.tar.xz > SHA256SUMS + - sha256sum *.pkg.tar.* > SHA256SUMS artifacts: paths: - - "package/archlinux/*.pkg.tar.xz" + - "package/archlinux/*.pkg.tar.*" - package/archlinux/SHA256SUMS only: - tags