From 715e5130bf9e5f2f3902af62931bfff3970d8730 Mon Sep 17 00:00:00 2001 From: "Cole2.Hansen@live.uwe.ac.uk" <cole2.hansen@live.uwe.ac.uk> Date: Thu, 3 Apr 2025 12:12:39 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 18ce32b..ae2a825 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,10 +18,8 @@ build: stage: build script: - echo "Compiling with Raylib on macOS..." - - gcc main.c paddle.c ball.c brick.c -o brickbreaker \ - -I"/opt/homebrew/Cellar/raylib/5.5/include" \ - -L"/opt/homebrew/Cellar/raylib/5.5/lib" \ - -lraylib -framework OpenGL -framework Cocoa -framework IOKit -framework CoreVideo + - gcc main.c paddle.c ball.c brick.c -o brickbreaker -I"/opt/homebrew/Cellar/raylib/5.5/include" -L"/opt/homebrew/Cellar/raylib/5.5/lib" -lraylib -framework OpenGL -framework Cocoa -framework IOKit -framework CoreVideo + artifacts: paths: - brickbreaker -- GitLab