Update .gitlab-ci.yml
This commit is contained in:
parent
2685fe4cbd
commit
899baada53
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue