From de50f5b9bfa20052ca0f9049a07f8cdfe6cd282e Mon Sep 17 00:00:00 2001
From: Hansen <Cole2.hansen@live.uwe.ac.uk>
Date: Sun, 9 Mar 2025 08:38:33 +0500
Subject: [PATCH] Updated GitLab CI to upload latest filesss

---
 .gitlab-ci.yml | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c55d70e..d0f72ec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,18 +2,15 @@ stages:
   - build
 
 before_script:
-  - echo "Setting up environment..."
-  - powershell -Command "Invoke-WebRequest -Uri 'https://github.com/raysan5/raylib/releases/download/5.0/raylib-5.0_win64_msvc16.zip' -OutFile 'raylib.zip' -UseBasicParsing"
-  - powershell -Command "Expand-Archive -Path 'raylib.zip' -DestinationPath 'C:\raylib' -Force"
-  - echo "Raylib installed in C:\raylib"
+  - echo "Checking if GCC is installed..."
+  - gcc --version
 
 build:
   stage: build
   tags:
     - brickbreaker
   script:
-    - echo "Checking files..."
-    - dir C:\raylib  # Debugging step
+    - echo "Compiling on Windows..."
     - gcc main.c paddle.c ball.c brick.c -o brickbreaker.exe -I"C:\raylib\include" -L"C:\raylib\lib" -lraylib -lm
   artifacts:
     paths:
-- 
GitLab