| # 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. |
| |
| name: Prepare Rust Builder for Windows |
| description: 'Prepare Rust Build Environment for Windows' |
| inputs: |
| rust-version: |
| description: 'version of rust to install (e.g. stable)' |
| required: true |
| default: 'stable' |
| runs: |
| using: "composite" |
| steps: |
| - name: Install protobuf compiler |
| shell: bash |
| run: | |
| mkdir -p $HOME/d/protoc |
| cd $HOME/d/protoc |
| export PROTO_ZIP="protoc-29.1-win64.zip" |
| curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v29.1/$PROTO_ZIP |
| unzip $PROTO_ZIP |
| export PATH=$PATH:$HOME/d/protoc/bin |
| protoc.exe --version |
| - name: Setup Rust toolchain |
| shell: bash |
| run: | |
| # Avoid self update to avoid CI failures: https://github.com/apache/datafusion/issues/9653 |
| rustup toolchain install stable --no-self-update |
| rustup default stable |
| rustup component add rustfmt |
| - name: Configure rust runtime env |
| uses: ./.github/actions/setup-rust-runtime |