Ver código fonte

Rust 1.67, test Dockerfiles (nightly worked @ f29d5182), remove old BINS

spital 3 anos atrás
pai
commit
c1bf0bfafd

+ 4 - 4
contrib/docker/Dockerfile.alpine

@@ -1,8 +1,8 @@
 # Use: docker build . --pull --network=host -t darkfi:alpine -f ./contrib/docker/Dockerfile.alpine
 #   optionally with: --build-arg ALPINE_VER=3.17 --build-arg RUST_VER=nightly
-# The wallet test fail problem (see below) was the same for alpine 3.17 and rust 1.65
+# The wallet test fail problem (see below) was the same for alpine 3.17 and rust nightly
 
-ARG RUST_VER=1.65
+ARG RUST_VER=1.67
 ARG ALPINE_VER=3.17
 
 FROM alpine:${ALPINE_VER} as rust_builder
@@ -12,8 +12,8 @@ ARG ALPINE_VER
 
 RUN echo "=======================================================" \
     &&echo "===>>>>> The following error will occur during the test::" \
-    && echo "test util::parse::tests::test_truncate ... ok" \
-    && echo "test runtime::memory::tests::can_read_from_memory ... ok" \
+    && echo "test net::hosts::tests::test_filter_invalid ... ok" \
+    && echo "test consensus::state::tests::calc_sigmas_test ... ok" \
     && echo "error: test failed, to rerun pass '-p darkfi --lib'" \
     && echo ".... process didn't exit successfully: /opt/darkfi/target/release/deps/darkfi-... (signal: 11, SIGSEGV: invalid memory reference)" \
     && echo "rust ${RUST_VER} / alpine ${ALPINE_VER}" \

+ 1 - 1
contrib/docker/Dockerfile.debian

@@ -3,7 +3,7 @@
 #   optionally with: --build-arg BUILD_OS_VER=slim-buster --build-arg RUN_OS_VER=buster-slim --build-arg RUST_VER=1.65
 #   rust nightly with: BUILD_OS_VER=bullseye-slim RUN_OS_VER=bullseye-slim RUST_VER=nightly REPOSITORY=rustlang/rust
 
-ARG RUST_VER=1.65  #
+ARG RUST_VER=1.67  # 1.65
 ARG BUILD_OS_VER=slim-bullseye  # slim-buster
 ARG RUN_OS_VER=bullseye-slim    # buster-slim
 ARG REPOSITORY=rust             # rustlang/rust

+ 1 - 1
contrib/docker/Dockerfile.fedora

@@ -2,7 +2,7 @@
 # Use: docker build . --pull --network=host -t darkfi:fedora -f ./contrib/docker/Dockerfile.fedora
 #   optionally with: --build-arg OS_VER=fedora:36 --build-arg RUST_VER=nightly
 
-ARG RUST_VER=1.65       # stable nightly beta
+ARG RUST_VER=1.67       # stable nightly beta 1.65
 ARG OS_VER=fedora:37    # fedora:36
 
 FROM ${OS_VER} as rust_builder

+ 1 - 1
contrib/docker/Dockerfile.ubuntu

@@ -2,7 +2,7 @@
 # Use: docker build . --network=host --pull -t darkfi:ubuntu -f ./contrib/docker/Dockerfile.ubuntu
 #   optionally with: --build-arg BUILD_OS_VER=20.04 --build-arg RUST_VER=1.65
 
-ARG RUST_VER=1.65       # stable nightly beta
+ARG RUST_VER=1.67       # stable nightly beta
 ARG BUILD_OS_VER=22.04  # 20.04
 ARG RUN_OS_VER=${BUILD_OS_VER}
 ARG REPOSITORY=ubuntu