Last change to setup broke it for some reason

This commit is contained in:
Jack Christensen 2024-08-11 00:07:02 -04:00
parent 8c42618b8a
commit 8e926e728d
1 changed files with 2 additions and 4 deletions

View File

@ -2,7 +2,6 @@ stages:
- setup
- build
# Setup stage to prepare the environment and vcpkg
setup:
stage: setup
image: alpine:latest
@ -12,12 +11,11 @@ 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
- ./vcpkg install glew:x64-linux glfw3:x64-linux
- ./vcpkg install glew:x64-linux glfw3:x64-linux || true # Prevent script exit on failure
artifacts:
paths:
- vcpkg/ # Save the entire vcpkg directory as an artifact
- vcpkg/buildtrees/glew/*.log
# Build stage to compile the project
build: