blob: 6e71c561bc2ec10a47277b3d77c26c5fd5f05e04 [file]
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# Extract Rust version from rust-toolchain.toml
RUST_VERSION=$(grep 'channel' rust-toolchain.toml | sed 's/.*"\(.*\)".*/\1/')
if [ -z "$RUST_VERSION" ]; then
echo "Error: Could not extract Rust version from rust-toolchain.toml"
exit 1
fi
echo "Syncing Rust version $RUST_VERSION to Dockerfiles..."
# Update Dockerfiles
sed -i "s/FROM rust:[0-9.]\+/FROM rust:$RUST_VERSION/" bdd/rust/Dockerfile
sed -i "s/FROM rust:[0-9.]\+-slim-bookworm/FROM rust:$RUST_VERSION-slim-bookworm/" core/bench/dashboard/server/Dockerfile
echo "Updated Dockerfiles to use Rust $RUST_VERSION"