From 68ae17ccb54aa2ec3749ba11b5d3b31e67e7003f Mon Sep 17 00:00:00 2001 From: waych Date: Thu, 1 Apr 2021 06:56:15 -0700 Subject: [PATCH] Debug ci (#1085) * Add verbose flag (-v) to `cargo vcpkg build` in CI * Fix CI so that it works for all platforms --- .github/workflows/CI.yml | 2 +- Cargo.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8d5454e1..9a711847 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -17,7 +17,7 @@ jobs: - name: Install cargo-vcpkg run: cargo install cargo-vcpkg - name: Install dependencies - run: cargo vcpkg build + run: cargo vcpkg -v build - name: Build SDL2 shell: bash env: diff --git a/Cargo.toml b/Cargo.toml index 71b5633b..3d02c647 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -155,8 +155,9 @@ dependencies = ["sdl2"] # dependencies required when building examples and tests for this crate dev-dependencies = ["sdl2", "sdl2-image[libjpeg-turbo,tiff,libwebp]", "sdl2-ttf", "sdl2-gfx", "sdl2-mixer"] -git = "https://github.com/microsoft/vcpkg" -rev = "a0518036077baa4" +# TODO: This should be tracking https://github.com/microsoft/vcpkg see #1085 +git = "https://github.com/waych/vcpkg" +rev = "14d56fa2da809c5632043041625b975a3ce557bc" [package.metadata.vcpkg.target] x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md" }