This is an automated email from the ASF dual-hosted git repository. pengzheng pushed a commit to branch hotfix/openssl-update in repository https://gitbox.apache.org/repos/asf/celix.git
commit a6f17322aa529d6c54a4e473d6252e90cfeeee27 Author: PengZheng <[email protected]> AuthorDate: Thu Apr 25 17:36:01 2024 +0800 Revert "Use macOS-13 rather than macOS-14." This reverts commit b6ac6e6cc3f5bc8f9e7786633befb1e3a99670b5. --- .github/workflows/macos.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 177a9b24..b2a268ac 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -68,14 +68,14 @@ jobs: source deactivate_conanrun.sh macos-build-brew: - runs-on: macOS-13 + runs-on: macOS-latest timeout-minutes: 120 steps: - name: Checkout source code uses: actions/[email protected] - name: Install dependencies run: | - brew install lcov jansson rapidjson libzip ccache ninja + brew install lcov jansson rapidjson libzip ccache ninja openssl - name: Prepare ccache timestamp id: ccache_cache_timestamp run: | @@ -104,5 +104,6 @@ jobs: - name: Test run: | cd $GITHUB_WORKSPACE/build + export DYLD_LIBRARY_PATH=/usr/local/opt/openssl/lib:$DYLD_LIBRARY_PATH export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH:$(pwd)/utils:$(pwd)/framework:$(pwd)/dfi ctest --output-on-failure
