Update .gitlab-ci.yml

This commit is contained in:
Jack Christensen 2024-08-10 23:54:06 -04:00
parent 2685fe4cbd
commit 899baada53
1 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@ stages:
- setup
- build
# Setup stage to prepare the environment
setup:
stage: setup
image: alpine:latest
@ -12,14 +11,14 @@ setup:
- echo "Cloning and setting up vcpkg..."
- git clone https://github.com/microsoft/vcpkg.git
- cd vcpkg
- export VCPKG_FORCE_SYSTEM_BINARIES=1
- ./bootstrap-vcpkg.sh
- git pull
- ./vcpkg update
- ./vcpkg install glew:x64-linux glfw3:x64-linux # Install necessary packages
artifacts:
paths:
- vcpkg/
# Build stage to compile the project
build:
stage: build
image: alpine:latest