@@ -420,29 +420,30 @@ jobs:
420
420
runs-on : ubuntu-latest
421
421
steps :
422
422
- uses : actions/checkout@v4
423
- - uses : dtolnay/rust-toolchain@nightly
423
+ - uses : dtolnay/rust-toolchain@master
424
424
with :
425
+ toolchain : nightly-2024-02-08
425
426
components : " rust-src"
426
427
- name : Cache cargo registry
427
428
uses : Swatinem/rust-cache@v2
428
429
with :
429
430
key : sqlite_bundled-cargo-${{ hashFiles('**/Cargo.toml') }}
430
431
431
432
- name : Test diesel-cli
432
- run : cargo +nightly test --manifest-path diesel_cli/Cargo.toml --no-default-features --features "sqlite-bundled"
433
+ run : cargo +nightly-2024-02-08 test --manifest-path diesel_cli/Cargo.toml --no-default-features --features "sqlite-bundled"
433
434
434
435
- name : Run diesel_tests with ASAN enabled
435
436
env :
436
437
RUSTFLAGS : -Zsanitizer=address
437
438
ASAN_OPTIONS : detect_stack_use_after_return=1
438
- run : cargo +nightly -Z build-std test --manifest-path diesel_tests/Cargo.toml --no-default-features --features "sqlite libsqlite3-sys libsqlite3-sys/bundled libsqlite3-sys/with-asan" --target x86_64-unknown-linux-gnu
439
+ run : cargo +nightly-2024-02-08 -Z build-std test --manifest-path diesel_tests/Cargo.toml --no-default-features --features "sqlite libsqlite3-sys libsqlite3-sys/bundled libsqlite3-sys/with-asan" --target x86_64-unknown-linux-gnu
439
440
440
441
- name : Run diesel tests with ASAN enabled
441
442
env :
442
443
RUSTDOCFLAGS : -Zsanitizer=address
443
444
RUSTFLAGS : -Zsanitizer=address
444
445
ASAN_OPTIONS : detect_stack_use_after_return=1
445
- run : cargo +nightly -Z build-std test --manifest-path diesel/Cargo.toml --no-default-features --features "sqlite extras libsqlite3-sys libsqlite3-sys/bundled libsqlite3-sys/with-asan" --target x86_64-unknown-linux-gnu
446
+ run : cargo +nightly-2024-02-08 -Z build-std test --manifest-path diesel/Cargo.toml --no-default-features --features "sqlite extras libsqlite3-sys libsqlite3-sys/bundled libsqlite3-sys/with-asan" --target x86_64-unknown-linux-gnu
446
447
447
448
minimal_rust_version :
448
449
name : Check Minimal supported rust version (1.70.0)
0 commit comments