Skip to content

Commit 38ae816

Browse files
committed
bisect rustc
1 parent 2340fd1 commit 38ae816

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,20 @@ jobs:
5353
cd ~/.cargo/bin
5454
tar -xzf cross-x86_64-unknown-linux-gnu.tar.gz
5555
56-
- name: Test
57-
if: matrix.tests == ''
58-
run: sh .github/workflows/test.sh
59-
env:
60-
TARGET: ${{ matrix.target }}
61-
SKIP_CROSS: ${{ matrix.cross }}
62-
SKIP_AUTO_SPLITTING: ${{ matrix.auto_splitting }}
63-
SKIP_NETWORKING: ${{ matrix.networking }}
64-
SKIP_SOFTWARE_RENDERING: ${{ matrix.software_rendering }}
56+
- name: Install bisect
57+
run: |
58+
cargo install cargo-bisect-rustc
59+
cargo bisect-rustc rustc --start=9c3bc805d --end=e9e6e2e44 -- test --all-features
60+
61+
# - name: Test
62+
# if: matrix.tests == ''
63+
# run: sh .github/workflows/test.sh
64+
# env:
65+
# TARGET: ${{ matrix.target }}
66+
# SKIP_CROSS: ${{ matrix.cross }}
67+
# SKIP_AUTO_SPLITTING: ${{ matrix.auto_splitting }}
68+
# SKIP_NETWORKING: ${{ matrix.networking }}
69+
# SKIP_SOFTWARE_RENDERING: ${{ matrix.software_rendering }}
6570

6671
- name: Upload screenshots
6772
if: matrix.tests == '' && (success() || failure())

0 commit comments

Comments
 (0)