Updating to rust 1.51.0 (#1598)

This commit is contained in:
Dessalines 2021-05-03 10:46:12 -04:00 committed by GitHub
parent 6eed6cf362
commit f67b0e9ff8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 11 deletions

View file

@ -9,7 +9,7 @@ platform:
steps:
- name: prepare repo
image: ekidd/rust-musl-builder:1.50.0
image: ekidd/rust-musl-builder:1.51.0
user: root
commands:
- chown 1000:1000 . -R
@ -21,13 +21,13 @@ steps:
- /root/.cargo/bin/cargo fmt -- --check
- name: cargo clippy
image: ekidd/rust-musl-builder:1.50.0
image: ekidd/rust-musl-builder:1.51.0
commands:
- 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: ekidd/rust-musl-builder:1.50.0
image: ekidd/rust-musl-builder:1.51.0
environment:
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
LEMMY_CONFIG_LOCATION: ../../config/config.hjson
@ -39,7 +39,7 @@ steps:
- cargo test --workspace --no-fail-fast
- name: cargo build
image: ekidd/rust-musl-builder:1.50.0
image: ekidd/rust-musl-builder:1.51.0
commands:
- cargo build
- mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server
@ -138,7 +138,7 @@ platform:
steps:
- name: prepare repo
image: rust:1.50-slim-buster
image: rust:1.51-slim-buster
user: root
commands:
- chown 1000:1000 . -R
@ -147,7 +147,7 @@ steps:
- git fetch --tags
- name: cargo test
image: rust:1.50-slim-buster
image: rust:1.51-slim-buster
environment:
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
LEMMY_CONFIG_LOCATION: ../../config/config.hjson
@ -161,7 +161,7 @@ steps:
# Using Debian here because there seems to be no official Alpine-based Rust docker image for ARM.
- name: cargo build
image: rust:1.50-slim-buster
image: rust:1.51-slim-buster
commands:
- apt-get update
- apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev

View file

@ -1,4 +1,4 @@
ARG RUST_BUILDER_IMAGE=ekidd/rust-musl-builder:1.50.0
ARG RUST_BUILDER_IMAGE=ekidd/rust-musl-builder:1.51.0
# Cargo chef plan
FROM $RUST_BUILDER_IMAGE as planner

View file

@ -1,7 +1,7 @@
# syntax=docker/dockerfile:experimental
# Warning: this will not pick up migrations unless there are code changes
FROM rust:1.50-buster as rust
FROM rust:1.51-buster as rust
ENV HOME=/home/root

View file

@ -1,5 +1,5 @@
# Build the project
FROM ekidd/rust-musl-builder:1.50.0 as builder
FROM ekidd/rust-musl-builder:1.51.0 as builder
ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
ARG RUSTRELEASEDIR="release"

View file

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