From 2acbf3eb30881c9b2b836115f30485d997de5f44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xory=20=E2=80=8B?= Date: Wed, 17 Apr 2024 11:44:55 +0000 Subject: [PATCH] fix: fuck it, literally just download rust every time it needs to be used --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa8532f..36b84e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,11 +18,13 @@ image: "rust:latest" build:cargo: script: + - curl https://sh.rustup.rs -sSf | sh -s -- -y - rustc --version && cargo --version - cargo build # Use cargo to test the project test:cargo: script: + - curl https://sh.rustup.rs -sSf | sh -s -- -y - rustc --version && cargo --version # Print version info for debugging - cargo test --workspace --verbose \ No newline at end of file