Skip to content

Commit

Permalink
Merge branch 'tomas/ci-toolchain-1.76.0' (#2696)
Browse files Browse the repository at this point in the history
* tomas/ci-toolchain-1.76.0:
  ci+docker: update toolchain versions
  • Loading branch information
tzemanovic committed Feb 27, 2024
2 parents d765bbf + 8988788 commit 9ceb8fa
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
matrix:
os: [ubuntu-latest]
wasm_cache_version: ["v2"]
nightly_version: [nightly-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]

steps:
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
matrix:
os: [ubuntu-latest]
wasm_cache_version: ["v2"]
nightly_version: [nightly-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]

steps:
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]
make:
- name: ABCI
Expand Down Expand Up @@ -568,7 +568,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]
comet_bft: [0.37.2]
hermes: [1.7.4-namada-beta7]
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-2023-06-01]
nightly_version: [nightly-2024-02-20]
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-2023-06-01]
nightly_version: [nightly-2024-02-20]
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-2023-06-01]
nightly_version: [nightly-2024-02-20]
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/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-2023-06-01]
nightly_version: [nightly-2024-02-20]
mold_version: [2.4.0]
comet_bft: [0.37.2]
name: ["Run chain sync test"]
Expand Down
4 changes: 2 additions & 2 deletions docker/namada-wasm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This docker is used for deterministic wasm builds

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

WORKDIR /__w/namada/namada

# The version should be matching the version set above
RUN rustup toolchain install 1.70.0 --profile minimal
RUN rustup toolchain install 1.76.0 --profile minimal
RUN rustup target add wasm32-unknown-unknown

RUN apt-get update && apt-get install -y \
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.70.0 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.76.0 AS chef
WORKDIR /app

FROM chef AS planner
Expand Down

0 comments on commit 9ceb8fa

Please sign in to comment.