Update .gitlab-ci.yml

This commit is contained in:
Jack Christensen 2024-08-10 23:36:34 -04:00
parent 6c6f9a9c04
commit 0fbe47751f
1 changed files with 3 additions and 2 deletions

View File

@ -7,11 +7,12 @@ setup:
image: alpine:latest image: alpine:latest
script: script:
- echo "Installing dependencies..." - echo "Installing dependencies..."
- apk update && apk add --no-cache git cmake make gcc g++ bash - apk update && apk add --no-cache curl zip unzip tar git cmake make gcc g++ bash
- echo "Cloning vcpkg..." - echo "Cloning vcpkg..."
- git clone https://github.com/microsoft/vcpkg.git - git clone https://github.com/microsoft/vcpkg.git
- cd vcpkg - cd vcpkg
- ./bootstrap-vcpkg.sh - ./bootstrap-vcpkg.sh
- export VCPKG_FORCE_SYSTEM_BINARIES=1
build: build:
stage: build stage: build