steps:
- name: prepare repo
- image: clux/muslrust:1.56.0
+ image: clux/muslrust:1.60.0
user: root
commands:
- chown 1000:1000 . -R
- /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
- 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
steps:
- name: prepare repo
- image: rust:1.56-slim
+ image: rust:1.60-slim
user: root
commands:
- chown 1000:1000 . -R
# 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
# 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