2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

choco => vcpkg

This commit is contained in:
Ruben Perez
2023-10-05 16:03:32 +02:00
parent 60ba5b62af
commit 7412b37e08
2 changed files with 8 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v3
- name: Install dependencies
run: choco install --no-progress -y openssl
run: vcpkg install openssl --triplet x64-windows
- name: Setup Boost
run: python3 tools/ci.py setup-boost --source-dir=$(pwd)
@@ -106,13 +106,13 @@ jobs:
- { toolset: msvc-14.2, os: windows-2019 }
- { toolset: msvc-14.3, os: windows-2022 }
env:
OPENSSL_ROOT: "C:\\Program Files\\OpenSSL"
OPENSSL_ROOT: "C:\\vcpkg\\installed\\x64-windows"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: choco install --no-progress -y openssl
run: vcpkg install openssl --triplet x64-windows
- name: Setup user-config.jam
run: cp tools/user-config.jam "${HOMEDRIVE}${HOMEPATH}/"
@@ -216,7 +216,7 @@ jobs:
matrix:
include:
- { toolset: gcc-11, install: g++-11, cxxstd: "11,17,20" } # Having C++11 shouldn't break the build
- { toolset: clang-14, install: clang-11, cxxstd: "17,20" }
- { toolset: clang-14, install: clang-14, cxxstd: "17,20" }
runs-on: ubuntu-22.04
steps:
- name: Checkout

View File

@@ -1,9 +1,9 @@
name: Coverage
on: push
# push:
# branches:
# - develop
on:
push:
branches:
- develop
jobs:
posix: