Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

chore: update to the latest rust [do not deploy] #411

Merged
merged 1 commit into from
Aug 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,13 @@ workflows:
jobs:
checks:
docker:
- image: mozilla/cidockerbases:rust-latest
- image: cimg/rust:1.63
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- checkout
- setup-rust-check
- rust-check

build-and-test:
Expand Down Expand Up @@ -240,12 +241,16 @@ jobs:

docs-build:
docker:
- image: mozilla/cidockerbases:rust-latest
- image: cimg/rust:1.63
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- checkout
- run:
name: Setup Build docs
command: |
cargo install mdbook
- run:
name: Build docs
command: |
Expand Down Expand Up @@ -293,6 +298,13 @@ commands:
echo "${DOCKER_PASS}" | docker login -u="${DOCKER_USER}" --password-stdin
fi

setup-rust-check:
steps:
- run:
name: Setup Rust Checks
command: |
cargo install cargo-audit

rust-check:
steps:
- run:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARG APT_CACHE_BUST="2021-05-13"
# =============================================================================
# Pull in the version of cargo-chef we plan to use, so that all the below steps
# use a consistent set of versions.
FROM lukemathwalker/cargo-chef:0.1.35-rust-1.61-buster as chef
FROM lukemathwalker/cargo-chef:0.1.39-rust-1.63-buster as chef
WORKDIR /app

# =============================================================================
Expand Down