From 4cc2850fee014df21a073a3a72b135b557e05545 Mon Sep 17 00:00:00 2001
From: Louis Capitanchik <contact@louiscap.co>
Date: Sun, 17 Nov 2024 04:12:18 +0000
Subject: [PATCH] Use prebuilt base image

---
 .gitlab-ci.yml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 625ae30..575100b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: debian:bookworm
+image: cr.weirdboi.dev/base/rust:1-82
 stages:
   - test
 cache: &global_cache
@@ -14,12 +14,6 @@ cache: &global_cache
 variables:
   CARGO_HOME: ${CI_PROJECT_DIR}/.cargo
 
-before_script:
-  - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
-  - rustup toolchain install stable
-  - rustup toolchain install nightly
-  - rustup update
-
 lint:
   stage: test
   script:
@@ -32,7 +26,6 @@ lint:
 test:
   stage: test
   script:
-    - cargo +nightly install junitify
     - cargo +nightly test -- --format=json -Z unstable-options --report-time | junitify --out $CI_PROJECT_DIR/tests/
   artifacts:
     when: always
-- 
GitLab