Skip to content

Commit 9c7a72f

Browse files
committed
fix(drone): build failure
1 parent 71bb5bd commit 9c7a72f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.drone.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ steps:
5454
- cp /usr/local/bin/mina cli/bin/
5555

5656
- name: build
57-
image: rust:1.71-bullseye
57+
image: rust:1.75-bullseye
5858
commands:
5959
- apt-get update && apt-get install -y libssl-dev libjemalloc-dev jq
60-
- rustup update nightly-2023-06-01 && rustup default nightly-2023-06-01
60+
- rustup update nightly-2023-12-21 && rustup default nightly-2023-12-21
6161
- rustup component add rustfmt
6262
- cargo test --release -p cli
6363
- cargo build --release -p cli --bin openmina

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG MINA_SNARK_WORKER_TAG=0.0.9
22

33
FROM rust:buster AS build
4-
RUN rustup default nightly-2023-06-01 && rustup component add rustfmt
4+
RUN rustup default nightly-2023-12-21 && rustup component add rustfmt
55
WORKDIR /openmina
66
COPY . .
77
RUN cargo build --release --package=cli --bin=openmina

node/testing/docker/Dockerfile.openmina

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
77

88
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
99

10-
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
10+
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
1111

12-
RUN source ~/.cargo/env && rustup update nightly-2023-06-01
12+
RUN source ~/.cargo/env && rustup update nightly-2023-12-21
1313

1414
RUN git clone https://github.com/openmina/openmina
1515

node/testing/docker/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM vladsimplestakingcom/mina-openmina-builder:focal as builder
22

33
RUN git fetch && git checkout feat/tests-with-debugger
44

5-
RUN source ~/.cargo/env && cargo +nightly-2023-06-01 build --release -p openmina-node-testing --bin runner --bin openmina-node-testing
5+
RUN source ~/.cargo/env && cargo +nightly-2023-12-21 build --release -p openmina-node-testing --bin runner --bin openmina-node-testing
66

77
FROM vladsimplestakingcom/mina-debugger:2.0.0rampup4-focal
88

0 commit comments

Comments
 (0)