|
95 | 95 | # continues to work as cross releases in the past have broken things |
96 | 96 | # in subtle ways. |
97 | 97 | CROSS_VERSION: v0.2.5 |
98 | | - runs-on: ${{ matrix.os }} |
| 98 | + runs-on: ubuntu-latest |
99 | 99 | strategy: |
100 | 100 | fail-fast: false |
101 | 101 | matrix: |
@@ -124,15 +124,15 @@ jobs: |
124 | 124 | - name: Basic build |
125 | 125 | run: cross build --all --verbose --target ${{ matrix.target }} |
126 | 126 | - name: Run subset of tests |
127 | | - run: ${{ env.CARGO }} test --verbose --test integration --target ${{ matrix.target }} |
| 127 | + run: cross test --verbose --test integration --target ${{ matrix.target }} |
128 | 128 | - name: Run subset of regex-syntax tests |
129 | | - run: ${{ env.CARGO }} test --verbose -p regex-syntax --lib --target ${{ matrix.target }} |
| 129 | + run: cross test --verbose -p regex-syntax --lib --target ${{ matrix.target }} |
130 | 130 | - name: Run subset of regex-automata tests |
131 | | - run: ${{ env.CARGO }} test --verbose -p regex-automata --lib --target ${{ matrix.target }} |
| 131 | + run: cross test --verbose -p regex-automata --lib --target ${{ matrix.target }} |
132 | 132 | - name: Run regex-lite tests |
133 | | - run: ${{ env.CARGO }} test --verbose -p regex-lite --lib --target ${{ matrix.target }} |
| 133 | + run: cross test --verbose -p regex-lite --lib --target ${{ matrix.target }} |
134 | 134 | - name: Run regex-cli tests |
135 | | - run: ${{ env.CARGO }} test --verbose -p regex-cli --lib --target ${{ matrix.target }} |
| 135 | + run: cross test --verbose -p regex-cli --lib --target ${{ matrix.target }} |
136 | 136 |
|
137 | 137 | # This job runs a stripped down version of CI to test the MSRV. The specific |
138 | 138 | # reason for doing this is that the regex crate's dev-dependencies tend to |
|
0 commit comments