Skip to content

Commit cf54a78

Browse files
authored
Merge pull request RustPython#4487 from DimitrisJim/mac_tests_no_ssl
Skip linking openSSL on mac runner for the rust tests.
2 parents d94d0ac + 6d3cbf1 commit cf54a78

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,12 @@ jobs:
137137

138138
- name: run rust tests
139139
run: cargo test --workspace --exclude rustpython_wasm --verbose --features threading ${{ env.CARGO_ARGS }} ${{ env.NON_WASM_PACKAGES }}
140-
if: runner.os != 'macOS' # temp skip to avoid CI failure
140+
if: runner.os != 'macOS'
141+
# temp skip ssl linking for Mac to avoid CI failure
142+
- name: run rust tests (MacOS no ssl)
143+
run: cargo test --workspace --exclude rustpython_wasm --verbose --no-default-features --features threading,stdlib,zlib,importlib,encodings,jit ${{ env.NON_WASM_PACKAGES }}
144+
if: runner.os == 'macOS'
145+
141146
- name: check compilation without threading
142147
run: cargo check ${{ env.CARGO_ARGS }}
143148

0 commit comments

Comments
 (0)