Skip to content

Commit 7b54963

Browse files
committed
Build RustPython with no default features
1 parent c930055 commit 7b54963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,11 +425,11 @@ jobs:
425425
- if: runner.os != 'macOS'
426426
name: Check whats_left is not broken
427427
shell: bash
428-
run: python -I scripts/whats_left.py --features "$(sed -e 's/--[^ ]*//g' <<< "${{ env.CARGO_ARGS }}" | tr -d '[:space:]'),threading,jit"
428+
run: python -I scripts/whats_left.py --no-default-features --features "$(sed -e 's/--[^ ]*//g' <<< "${{ env.CARGO_ARGS }}" | tr -d '[:space:]'),threading,jit"
429429
- if: runner.os == 'macOS' # TODO fix jit on macOS
430430
name: Check whats_left is not broken (macOS)
431431
shell: bash
432-
run: python -I scripts/whats_left.py --features "$(sed -e 's/--[^ ]*//g' <<< "${{ env.CARGO_ARGS }}" | tr -d '[:space:]'),threading" # no jit on macOS for now
432+
run: python -I scripts/whats_left.py --no-default-features --features "$(sed -e 's/--[^ ]*//g' <<< "${{ env.CARGO_ARGS }}" | tr -d '[:space:]'),threading" # no jit on macOS for now
433433

434434
lint:
435435
name: Check Rust code with clippy

0 commit comments

Comments
 (0)