Update to Rust 1.60 (#2247)

remove-local-image-check
Nutomic 2 years ago committed by GitHub
parent ef12cd9588
commit 99f3141841
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,7 +9,7 @@ platform:
steps:
- name: prepare repo
image: clux/muslrust:1.56.0
image: clux/muslrust:1.60.0
user: root
commands:
- chown 1000:1000 . -R
@ -23,19 +23,19 @@ steps:
- /root/.cargo/bin/cargo fmt -- --check
- name: check lemmy_api_common with minimal deps
image: clux/muslrust:1.56.0
image: clux/muslrust:1.60.0
commands:
- cargo check -p lemmy_api_common
- name: cargo clippy
image: clux/muslrust:1.56.0
image: clux/muslrust:1.60.0
commands:
- rustup component add clippy
- cargo clippy --workspace --tests --all-targets --all-features -- -D warnings -D deprecated -D clippy::perf -D clippy::complexity -D clippy::dbg_macro
- cargo clippy --workspace -- -D clippy::unwrap_used
- name: cargo test
image: clux/muslrust:1.56.0
image: clux/muslrust:1.60.0
environment:
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
LEMMY_CONFIG_LOCATION: ../../config/config.hjson
@ -47,13 +47,13 @@ steps:
- cargo test --workspace --no-fail-fast
- name: check defaults.hjson updated
image: clux/muslrust:1.56.0
image: clux/muslrust:1.60.0
commands:
- ./scripts/update_config_defaults.sh config/defaults_current.hjson
- diff config/defaults.hjson config/defaults_current.hjson
- name: cargo build
image: clux/muslrust:1.56.0
image: clux/muslrust:1.60.0
commands:
- cargo build
- mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server
@ -152,7 +152,7 @@ platform:
steps:
- name: prepare repo
image: rust:1.56-slim
image: rust:1.60-slim
user: root
commands:
- chown 1000:1000 . -R
@ -164,7 +164,7 @@ steps:
# TODO temporarily disable arm tests
# - name: cargo test
# image: rust:1.56-slim
# image: rust:1.60-slim
# environment:
# LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
# LEMMY_CONFIG_LOCATION: ../../config/config.hjson
@ -179,7 +179,7 @@ steps:
# TODO temporarily disable arm tests
# Using Debian here because there seems to be no official Alpine-based Rust docker image for ARM.
# - name: cargo build
# image: rust:1.56-slim
# image: rust:1.60-slim
# commands:
# - apt-get update
# - apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev

@ -1,5 +1,5 @@
tab_spaces = 2
edition="2018"
edition="2021"
imports_layout="HorizontalVertical"
imports_granularity="Crate"
reorder_imports=true

@ -1,4 +1,4 @@
ARG RUST_BUILDER_IMAGE=clux/muslrust:1.56.0
ARG RUST_BUILDER_IMAGE=clux/muslrust:1.60.0
FROM $RUST_BUILDER_IMAGE as chef
USER root

@ -1,5 +1,5 @@
# Build the project
FROM clux/muslrust:1.56.0 as builder
FROM clux/muslrust:1.60.0 as builder
ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
ARG RUSTRELEASEDIR="release"

@ -1,4 +1,4 @@
ARG RUST_BUILDER_IMAGE=rust:1.56-slim-buster
ARG RUST_BUILDER_IMAGE=rust:1.60-slim-buster
# Build Lemmy
FROM $RUST_BUILDER_IMAGE as builder

Loading…
Cancel
Save