Merge pull request #4487 from DimitrisJim/mac_tests_no_ssl

Skip linking openSSL on mac runner for the rust tests.
This commit is contained in:
Jim Fasarakis-Hilliard
2023-02-10 00:24:07 +02:00
committed by GitHub

View File

@@ -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 }}