Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update rust stable to 1.78 and nightly 2024-05-15 #3277

Merged
merged 1 commit into from
May 21, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
matrix:
os: [ubuntu-latest]
wasm_cache_version: ["v2"]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]

steps:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
matrix:
os: [ubuntu-latest]
wasm_cache_version: ["v2"]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]

steps:
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down Expand Up @@ -392,7 +392,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down Expand Up @@ -586,7 +586,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]
comet_bft: [0.37.2]
make:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
make:
- name: Clippy
command: clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
make:
- name: Audit
command: audit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mdbook_version: [rust-lang/[email protected]]
mdbook_mermaid: [badboy/[email protected]]
mdbook_linkcheck: [Michael-F-Bryan/[email protected]]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triggerable_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2024-02-10]
nightly_version: [nightly-2024-05-15]
mold_version: [2.4.0]
comet_bft: [0.37.2]
name: ["Run chain sync test"]
Expand Down
2 changes: 1 addition & 1 deletion docker/namada-wasm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This docker is used for deterministic wasm builds

# The version should be matching the version set in wasm/rust-toolchain.toml
FROM rust:1.76.0-bullseye
FROM rust:1.78.0-bookworm

WORKDIR /__w/namada/namada

Expand Down
2 changes: 1 addition & 1 deletion docker/namada/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.76.0-bullseye AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.78.0-bookwork AS chef
WORKDIR /app

FROM chef AS planner
Expand Down
Loading