File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 7878
7979 - id : build-rust-latest-beta
8080 label : " Build with Latest Rust Beta"
81- command : bin/ci-builder run stable bash -c "curl https://sh.rustup.rs -sSf | sh -s -- -y && source /cargo/env && rustup install beta && rustup run beta cargo build --all-targets"
81+ command : bin/ci-builder run stable ci/test/rust- beta-build.sh
8282 depends_on : []
8383 timeout_in_minutes : 60
8484 agents :
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # Copyright Materialize, Inc. and contributors. All rights reserved.
4+ #
5+ # Use of this software is governed by the Business Source License
6+ # included in the LICENSE file at the root of this repository.
7+ #
8+ # As of the Change Date specified in that file, in accordance with
9+ # the Business Source License, use of this software will be governed
10+ # by the Apache License, Version 2.0.
11+
12+ set -euo pipefail
13+
14+ curl https://sh.rustup.rs -sSf | sh -s -- -y
15+ # shellcheck source=/dev/null
16+ source /cargo/env
17+ trap " rustup self uninstall -y" SIGTERM SIGINT EXIT
18+ rustup install beta
19+ rustup run beta cargo build --all-targets
You can’t perform that action at this time.
0 commit comments