Last change to setup broke it for some reason
This commit is contained in:
parent
8c42618b8a
commit
8e926e728d
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue