Last change to setup broke it for some reason
This commit is contained in:
parent
8c42618b8a
commit
8e926e728d
|
@ -2,7 +2,6 @@ stages:
|
||||||
- setup
|
- setup
|
||||||
- build
|
- build
|
||||||
|
|
||||||
# Setup stage to prepare the environment and vcpkg
|
|
||||||
setup:
|
setup:
|
||||||
stage: setup
|
stage: setup
|
||||||
image: alpine:latest
|
image: alpine:latest
|
||||||
|
@ -12,12 +11,11 @@ setup:
|
||||||
- echo "Cloning and setting up vcpkg..."
|
- echo "Cloning and setting up vcpkg..."
|
||||||
- git clone https://github.com/microsoft/vcpkg.git
|
- git clone https://github.com/microsoft/vcpkg.git
|
||||||
- cd vcpkg
|
- cd vcpkg
|
||||||
- export VCPKG_FORCE_SYSTEM_BINARIES=1
|
|
||||||
- ./bootstrap-vcpkg.sh
|
- ./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:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- vcpkg/ # Save the entire vcpkg directory as an artifact
|
- vcpkg/buildtrees/glew/*.log
|
||||||
|
|
||||||
# Build stage to compile the project
|
# Build stage to compile the project
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in New Issue