Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 1 addition & 2 deletions containers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ MAKEFLAGS += --silent
endif

PODMAN := $(shell command -v podman)

CONTAINER_TAG := latest
CONTAINER_TAG := $(shell git describe --always --abbrev=12)

.PHONY: ec
ec:
Expand Down
6 changes: 3 additions & 3 deletions containers/ec/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

# NOTE: The repository is specified in the image name to make it explicit
# which source is being trusted to provide the image.
ARG CONTAINER_IMAGE="docker.io/library/debian:trixie-20241202-slim"
ARG CONTAINER_IMAGE="docker.io/library/debian:trixie-20250520-slim"

ARG SDCC_REPO="https://svn.code.sf.net/p/sdcc/code"
ARG SDCC_REV="14648"
ARG SDCC_VERSION="4.4.0"

ARG RUST_TOOLCHAIN="nightly-2024-05-11"
ARG RUST_TOOLCHAIN="1.85.0"

# Build SDCC toolchain
FROM ${CONTAINER_IMAGE} as sdcc-build
Expand Down Expand Up @@ -101,7 +101,7 @@ RUN apt-get --quiet update \
&& apt-get clean

# XXX: rustup 1.27 does not recognize toolchain if preceding option specifies
# a comma seprates list as an argument with a space.
# a comma separated list as an argument with a space.
# Ref: https://github.com/rust-lang/rustup/issues/4073
RUN rustup toolchain install \
--no-self-update \
Expand Down
Loading