6 Commits

Author SHA1 Message Date
Luke Parker
d72347b511 Forward docker stderr to stdout in case stderr is being dropped for some reason 2025-08-10 20:51:56 -04:00
Luke Parker
53612b2428 Docker 25 since 24 doesn't have an active tag anymore 2025-08-10 20:13:24 -04:00
Luke Parker
d6cb978164 Attempt to use Docker 24
Long-shot premised on an old forum post on how downgrading to Docker 24 solved
their instance of the error we face, though our conditions for it are
presumably different.
2025-08-10 18:57:13 -04:00
Luke Parker
d7f2f7a415 Stop using an older version of Docker 2025-08-10 18:37:02 -04:00
Luke Parker
91379099f3 Restore Debian 12 Bookworm over Debian 11 Bullseye 2025-08-10 18:36:44 -04:00
Luke Parker
6953c30770 Add missing "-4" arguments to wget 2025-08-10 17:50:35 -04:00
6 changed files with 9 additions and 9 deletions

View File

@@ -67,7 +67,7 @@ runs:
with:
rootless: true
set-host: true
version: type=image,tag=26.1.4
version: type=image,tag=25.0.7
if: runner.os == 'Linux'
# - name: Cache Rust

View File

@@ -117,7 +117,7 @@ WORKDIR /home/{user}
Os::Debian => format!(
r#"
FROM debian:bullseye-slim AS image
FROM debian:bookworm-slim AS image
COPY --from=mimalloc-debian libmimalloc.so /usr/lib
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
@@ -146,7 +146,7 @@ fn build_serai_service(prelude: &str, release: bool, features: &str, package: &s
format!(
r#"
FROM rust:1.89-slim-bullseye AS builder
FROM rust:1.89-slim-bookworm AS builder
COPY --from=mimalloc-debian libmimalloc.so /usr/lib
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload

View File

@@ -16,7 +16,7 @@ RUN git clone https://github.com/microsoft/mimalloc && \
"#;
const DEBIAN_MIMALLOC: &str = r#"
FROM debian:bullseye-slim AS mimalloc-debian
FROM debian:bookworm-slim AS mimalloc-debian
RUN apt update && apt upgrade -y && apt install -y gcc g++ make cmake git
RUN git clone https://github.com/microsoft/mimalloc && \

View File

@@ -12,9 +12,9 @@ ENV BITCOIN_VERSION=27.1
RUN apk --no-cache add wget git gnupg
# Download Bitcoin
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-$(uname -m)-linux-gnu.tar.gz
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS
RUN wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS.asc
RUN wget -4 https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-$(uname -m)-linux-gnu.tar.gz
RUN wget -4 https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS
RUN wget -4 https://bitcoincore.org/bin/bitcoin-core-${BITCOIN_VERSION}/SHA256SUMS.asc
# Verify all sigs and check for a valid signature from laanwj -- 71A3
RUN git clone https://github.com/bitcoin-core/guix.sigs && \

View File

@@ -27,7 +27,7 @@ FROM alpine:latest AS monero
RUN apk --no-cache add wget gnupg
# Download Monero
RUN wget https://downloads.getmonero.org/cli/monero-linux-{arch}-v{MONERO_VERSION}.tar.bz2
RUN wget -4 https://downloads.getmonero.org/cli/monero-linux-{arch}-v{MONERO_VERSION}.tar.bz2
# Verify Binary -- fingerprint from https://github.com/monero-project/monero-site/issues/1949
ADD orchestration/{}/networks/monero/hashes-v{MONERO_VERSION}.txt .

View File

@@ -40,7 +40,7 @@ macro_rules! serai_test {
.set_handle(handle)
.set_start_policy(StartPolicy::Strict)
.set_log_options(Some(LogOptions {
action: LogAction::Forward,
action: LogAction::ForwardToStdOut,
policy: LogPolicy::Always,
source: LogSource::Both,
}));