Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ${{ matrix.os }}
container:
image: rust:1.90-bookworm
image: rust:1.90-trixie
env:
DEBIAN_FRONTEND: noninteractive
steps:
Expand All @@ -189,7 +189,7 @@ jobs:
apt-get install -y --no-install-recommends \
build-essential git wget curl \
liblua5.4-dev lua5.4 \
libslirp-dev libboost1.81-dev \
libslirp-dev libboost1.83-dev \
libclang-dev \
xxd jq sqlite3

Expand Down
5 changes: 3 additions & 2 deletions test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# syntax=docker.io/docker/dockerfile:1

ARG RUST_VERSION=1.86
ARG RUST_VERSION=1.90
ARG DEBIAN_VERSION=trixie
ARG FOUNDRY_VERSION=1.4.3
ARG PNPM_VERSION=10.7.0
ARG JUST_VERSION=1.46.0

#### base stage
FROM rust:${RUST_VERSION} AS base
FROM rust:${RUST_VERSION}-${DEBIAN_VERSION} AS base
ARG DEBIAN_FRONTEND=noninteractive
SHELL ["/usr/bin/env", "bash", "-euo", "pipefail", "-c"]
RUN <<EOF
Expand Down
Loading