Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ned14/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2022-04-06 18:47:05 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2022-04-07 12:48:10 +0300
commiteed86c227c0f066eb71d00d3c87b4c77d65b8e2e (patch)
tree16aad8c15c59db4eb23e79fa1d89bce2a080b31f
parent6fa9b70d22823c49e7885af092ba86c6761b70a4 (diff)
github actions: Pin version of cmake as runner's is broken.
-rw-r--r--.github/workflows/documentation.yml5
-rw-r--r--.github/workflows/programs.yml5
-rw-r--r--.github/workflows/unittests_linux.yml5
-rw-r--r--CMakeLists.txt1
4 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml
index a7251b4c..8e96ab1a 100644
--- a/.github/workflows/documentation.yml
+++ b/.github/workflows/documentation.yml
@@ -23,6 +23,11 @@ jobs:
fetch-depth: 0
submodules: recursive
+ - name: Force cmake version to older than runner's
+ uses: jwlawson/actions-setup-cmake@v1.12
+ with:
+ cmake-version: '3.22.2'
+
- name: Regenerate Documentation
shell: bash
run: |
diff --git a/.github/workflows/programs.yml b/.github/workflows/programs.yml
index d135d4f2..bc3ea80a 100644
--- a/.github/workflows/programs.yml
+++ b/.github/workflows/programs.yml
@@ -23,6 +23,11 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - name: Force cmake version to older than runner's
+ uses: jwlawson/actions-setup-cmake@v1.12
+ with:
+ cmake-version: '3.22.2'
+
- name: Build
shell: bash
run: |
diff --git a/.github/workflows/unittests_linux.yml b/.github/workflows/unittests_linux.yml
index afe45f79..804170c6 100644
--- a/.github/workflows/unittests_linux.yml
+++ b/.github/workflows/unittests_linux.yml
@@ -25,6 +25,11 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - name: Force cmake version to older than runner's
+ uses: jwlawson/actions-setup-cmake@v1.12
+ with:
+ cmake-version: '3.22.2'
+
- name: CMake tests Linux
shell: bash
run: |
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 292d88ec..15055784 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -201,6 +201,7 @@ else()
find_package(OpenSSL 1.1 COMPONENTS Crypto SSL)
if(OPENSSL_FOUND)
all_link_libraries(PRIVATE OpenSSL::Crypto OpenSSL::SSL $<$<PLATFORM_ID:Windows>:Crypt32>)
+ target_link_libraries(llfio_hl INTERFACE OpenSSL::Crypto OpenSSL::SSL $<$<PLATFORM_ID:Windows>:Crypt32>)
endif()
endif()
if(TARGET outcome::hl)