forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use CMake 3.21 on windows, do work around the download failure of the…
… manual.
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,14 +181,23 @@ jobs: | |
|
||
- name: "[macOS] Set up cmake" | ||
uses: jwlawson/[email protected] | ||
# Ubuntu 22.04 should use the CMake version from the repos, and Visual | ||
# Studio on Windows comes with its own CMake version anyway. | ||
# Ubuntu 22.04 should use the CMake version from the repos. | ||
if: runner.os == 'macOS' | ||
with: | ||
# This should always match the minimum required version in | ||
# our CMakeLists.txt | ||
cmake-version: "3.19.x" | ||
|
||
- name: "[Windows] Set up cmake" | ||
uses: jwlawson/[email protected] | ||
# Ubuntu 22.04 should use the CMake version from the repos. | ||
if: runner.os == 'macOS' | ||
with: | ||
# This is a workaround for a SSL false positive in cmake 3.26.4 | ||
# When downloading the manual. 3.21 is required for installing the | ||
# ANGLE Dlls via IMPORTED_RUNTIME_ARTIFACTS | ||
cmake-version: "3.21.x" | ||
|
||
- name: "[Windows] Set up MSVC Developer Command Prompt" | ||
if: runner.os == 'Windows' | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|