From 6d3cbf192ef05a36fa18480f49a77bf49ecd2611 Mon Sep 17 00:00:00 2001 From: Dimitris Fasarakis Hilliard Date: Thu, 9 Feb 2023 21:23:55 +0200 Subject: [PATCH] Skip linking ssl on mac runner. --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8cee190c4..a06efd52c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -137,7 +137,12 @@ jobs: - name: run rust tests run: cargo test --workspace --exclude rustpython_wasm --verbose --features threading ${{ env.CARGO_ARGS }} ${{ env.NON_WASM_PACKAGES }} - if: runner.os != 'macOS' # temp skip to avoid CI failure + if: runner.os != 'macOS' + # temp skip ssl linking for Mac to avoid CI failure + - name: run rust tests (MacOS no ssl) + run: cargo test --workspace --exclude rustpython_wasm --verbose --no-default-features --features threading,stdlib,zlib,importlib,encodings,jit ${{ env.NON_WASM_PACKAGES }} + if: runner.os == 'macOS' + - name: check compilation without threading run: cargo check ${{ env.CARGO_ARGS }}