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-17 04:05:05 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2022-04-17 04:05:05 +0300
commit28ed4621f3233fbfd24d437519f3503d06dba3e0 (patch)
treec788f5da3831d3977edc796bfec903cdcf03c371
parent2e6ec8e135f34e55198511802776f05b46064dc6 (diff)
-rw-r--r--.github/workflows/installability.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/installability.yml b/.github/workflows/installability.yml
index ee33f16b..20baf298 100644
--- a/.github/workflows/installability.yml
+++ b/.github/workflows/installability.yml
@@ -33,8 +33,10 @@ jobs:
shell: bash
run: |
git config --global core.longpaths true
- sudo apt-get remove -y libssl-dev
- sudo apt-get autoremove
+ if [ "${{ matrix.os }}" = "ubuntu-18.04" ]; then
+ sudo apt-get remove -y libssl-dev
+ sudo apt-get autoremove
+ fi
if [ "${{ matrix.configuration }}" = "status_code" ]; then
export CMAKE_CONFIGURE_OPTIONS="-DLLFIO_USE_EXPERIMENTAL_SG14_STATUS_CODE=ON"
fi