chore(ci): Adjust to rust version bumps

This commit is contained in:
Jonas Zohren 2023-06-10 15:35:22 +00:00 committed by Timo Kösters
parent 808b12f618
commit a3a9b60abc
2 changed files with 6 additions and 8 deletions

View file

@ -110,7 +110,7 @@ docker:tags:
cargo check:
stage: test
image: docker.io/rust:1.69.0-bullseye
image: docker.io/rust:1.70.0-bullseye
needs: []
interruptible: true
before_script:
@ -135,11 +135,7 @@ test:cargo:
- apt-get update && apt-get -y --no-install-recommends install libclang-dev # dependency for rocksdb
script:
- rustc --version && cargo --version # Print version info for debugging
- "cargo test --color always --workspace --verbose --locked --no-fail-fast -- -Z unstable-options --format json | gitlab-report -p test > $CI_PROJECT_DIR/report.xml"
artifacts:
when: always
reports:
junit: report.xml
- "cargo test --color always --workspace --verbose --locked --no-fail-fast"
test:clippy:
extends: .test-shared-settings