Skip to content

Commit 28cac2e

Browse files
committed
Re-add 1.32.0
1 parent 1d45856 commit 28cac2e

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
rust:
15-
#- 1.32.0
15+
- 1.32.0
1616
- stable
1717
- beta
1818
- nightly
@@ -46,21 +46,34 @@ jobs:
4646
override: true
4747
components: clippy, rustfmt
4848
- uses: Swatinem/rust-cache@v2
49+
- name: Build (1.32.0, default)
50+
uses: actions-rs/cargo@v1.0.3
51+
with:
52+
command: build
53+
args: --release
54+
if: ${{ matrix.features == 'default' && matrix.rust == '1.32.0' }}
55+
- name: Build (1.32.0, non-default)
56+
uses: actions-rs/cargo@v1.0.3
57+
with:
58+
command: test
59+
args: --release --features ${{ matrix.features }}
60+
if: ${{ matrix.features != 'default' && matrix.rust == '1.32.0' }}
4961
- name: Test (default)
5062
uses: actions-rs/cargo@v1.0.3
5163
with:
5264
command: test
5365
args: --release
54-
if: ${{ matrix.features == 'default' }}
66+
if: ${{ matrix.features == 'default' && matrix.rust != '1.32.0' }}
5567
- name: Test (non-default)
5668
uses: actions-rs/cargo@v1.0.3
5769
with:
5870
command: test
5971
args: --release --features ${{ matrix.features }}
60-
if: ${{ matrix.features != 'default' }}
72+
if: ${{ matrix.features != 'default' && matrix.rust != '1.32.0' }}
6173
- name: bench
6274
uses: actions-rs/cargo@v1.0.3
6375
with:
6476
command: bench
6577
env:
66-
COUNTS: 0,10,1000,100000,10000000
78+
COUNTS: 0,10,1000,100000,10000000
79+
if: ${{ matrix.rust != '1.32.0' }}

0 commit comments

Comments
 (0)