From a1a6ae01a31d50dd10ccf147df6b55a41a943e46 Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 17 Sep 2024 12:20:52 -0400 Subject: [PATCH] Add Debian sid repository and install phpab --- .gitlab-ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9657585..417c8fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,8 +5,15 @@ before_script: - apt update -yqq - apt install git libpq-dev libzip-dev zip make wget gnupg -yqq - # Install phab - - apt install phpab + # Add the Debian sid repository and its key + - echo "deb http://deb.debian.org/debian sid main" | tee /etc/apt/sources.list.d/debian-sid.list + - wget -O - https://ftp-master.debian.org/keys/archive-key-12.asc | apt-key add - + + # Update the package list to include the new repository + - apt-get update -yqq + + # Install phpab + - apt-get install -yqq phpab # Install the latest version of ncc (Nosial Code Compiler) - git clone https://git.n64.cc/nosial/ncc.git