Skip to content

Commit

Permalink
Rebuild Rust container on December 2023 with Rust 1.74 (#33)
Browse files Browse the repository at this point in the history
The current image is quite dated and no longer adequate to compile `ash`.
Our `rust:latest` base image tag is replaced with `1.74` to ensure a
recent-enough Rust base container is used, instead of considering an
_ancient_ local image/tag cache, as experience has shown.
  • Loading branch information
MarijnS95 authored Dec 6, 2023
1 parent f46dd71 commit dac9bb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e
./build-one.sh asciidoctor-spec 202206 "$@"
./build-one.sh vulkan-docs-base 202206 "$@"
./build-one.sh vulkan-docs 202206 "$@"
./build-one.sh rust 202206 "$@"
./build-one.sh rust 202312 "$@"
./build-one.sh openxr 20231010.1 "$@"
./build-one.sh openxr-sdk 20230614 "$@"
./build-one.sh openxr-pregenerated-sdk 20230822 "$@"
Expand Down
2 changes: 1 addition & 1 deletion rust.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This defines a docker image for generating and buld-testing
# Rust bindings to the Vulkan API.

FROM rust:latest
FROM rust:1.74
LABEL maintainer="Marijn Suijten <[email protected]>"

# Git for cloning repos, libclang-dev for running bindgen
Expand Down

0 comments on commit dac9bb8

Please sign in to comment.