Skip to content

Commit 6d3cbf1

Browse files
committed
Skip linking ssl on mac runner.
1 parent d94d0ac commit 6d3cbf1

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)