]> Untitled Git - lemmy.git/commitdiff
Update to Rust 1.60 (#2247)
authorNutomic <me@nutomic.com>
Tue, 10 May 2022 17:04:40 +0000 (17:04 +0000)
committerGitHub <noreply@github.com>
Tue, 10 May 2022 17:04:40 +0000 (17:04 +0000)
.drone.yml
.rustfmt.toml
docker/dev/Dockerfile
docker/prod/Dockerfile
docker/prod/Dockerfile.arm

index 7b909482ad41aa211d42a762e45077c5b0212f37..b7d75eb0a1b4712e2901516413018605c3b9fefa 100644 (file)
@@ -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
index 59528c80bfea4a24fcf7b314916d1853ca21c769..6bf5e0edaaa7c4d270e99fa32b344c433363db34 100644 (file)
@@ -1,5 +1,5 @@
 tab_spaces = 2
-edition="2018"
+edition="2021"
 imports_layout="HorizontalVertical"
 imports_granularity="Crate"
 reorder_imports=true
index f1dad5ce4eae3056445f803d80c638bb34b1441b..eca380cc45cce2bf82cc4f4094603169b18692aa 100644 (file)
@@ -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
index 7257e868b9198b310a834ec8041388c2b7cd03d5..31deb14787ef242d814ce6ac7f9b473909ab3dfe 100644 (file)
@@ -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"
index 2a2d15849ca9e4b2c7575f637e137d837b8f6422..2076e942df66aae3b3c256289c0f311d80e1f8fd 100644 (file)
@@ -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