From 3e0f8d864e7ddce190ce8fcfcc81a46a16e16380 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sat, 2 Jul 2022 12:02:37 +0200 Subject: [PATCH] downgrade openssl version on MacOS CI to avoid the issue with CONF_modules_unload() --- .github/workflows/macos.yml | 6 +++--- .github/workflows/python.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 05591a61503..93a79199811 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -34,7 +34,7 @@ jobs: - name: install boost run: | - brew install boost-build boost openssl + brew install boost-build boost openssl@1.1 echo "using darwin ;" >>~/user-config.jam - name: build and run tests @@ -65,7 +65,7 @@ jobs: - name: install boost run: | - brew install boost-build boost openssl + brew install boost-build boost openssl@1.1 echo "using darwin ;" >>~/user-config.jam - name: build and run simulations @@ -97,7 +97,7 @@ jobs: - name: install boost run: | - brew install boost-build boost openssl + brew install boost-build boost openssl@1.1 echo "using darwin ;" >>~/user-config.jam - name: build and run tests diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index e2dc37de2d8..677283c79be 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -27,7 +27,7 @@ jobs: - name: dependencies (MacOS) if: runner.os == 'macOS' run: | - brew install boost-build boost boost-python3 python@3.9 openssl + brew install boost-build boost boost-python3 python@3.9 openssl@1.1 echo "using darwin ;" >>~/user-config.jam - name: update package lists (linux)