mirror of
https://github.com/sogou/workflow.git
synced 2026-02-08 01:33:17 +08:00
15 lines
370 B
YAML
15 lines
370 B
YAML
language: cpp
|
|
os: windows
|
|
git:
|
|
depth: 3
|
|
quiet: true
|
|
branches:
|
|
only:
|
|
- windows
|
|
|
|
before_install:
|
|
- choco install -y openssl
|
|
|
|
script:
|
|
- cmake -B build -S . -G "Visual Studio 15 2017 Win64" && cmake --build build --config Release && cmake -B build_tutorial -S tutorial -G "Visual Studio 15 2017 Win64" && cmake --build build_tutorial --config Release
|