File tree 3 files changed +717
-2
lines changed
3 files changed +717
-2
lines changed Original file line number Diff line number Diff line change 46
46
# Test both windows-gnu and windows-msvc; use beta rust on one
47
47
- os : ubuntu-latest
48
48
target : x86_64-unknown-linux-gnu
49
- toolchain : 1.56.0 # MSRV
49
+ variant : MSRV
50
+ toolchain : 1.56.0
50
51
- os : ubuntu-latest
51
52
deps : sudo apt-get update ; sudo apt install gcc-multilib
52
53
target : i686-unknown-linux-gnu
58
59
59
60
steps :
60
61
- uses : actions/checkout@v3
62
+ - name : MSRV
63
+ if : ${{ matrix.variant == 'MSRV' }}
64
+ run : cp Cargo.lock.msrv Cargo.lock
61
65
- name : Install toolchain
62
66
uses : dtolnay/rust-toolchain@master
63
67
with :
66
70
- run : ${{ matrix.deps }}
67
71
- name : Maybe minimal versions
68
72
if : ${{ matrix.variant == 'minimal_versions' }}
69
- run : cargo generate-lockfile -Z minimal-versions
73
+ run : |
74
+ cargo generate-lockfile -Z minimal-versions
75
+ # Overrides for dependencies with incorrect requirements (may need periodic updating)
76
+ cargo update -p regex --precise 1.5.1
70
77
- name : Maybe nightly
71
78
if : ${{ matrix.toolchain == 'nightly' }}
72
79
run : |
You can’t perform that action at this time.
0 commit comments