Skip to content

Commit 731c8eb

Browse files
committed
test
Signed-off-by: onur-ozkan <[email protected]>
1 parent f0db241 commit 731c8eb

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,7 @@ jobs:
595595
name: "try - ${{ matrix.name }}"
596596
env:
597597
DIST_TRY_BUILD: 1
598+
DOWNLOAD_RUSTC: 1
598599
CI_JOB_NAME: "${{ matrix.name }}"
599600
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
600601
HEAD_SHA: "${{ github.event.pull_request.head.sha || github.sha }}"

src/ci/github-actions/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,7 @@ jobs:
757757
name: try - ${{ matrix.name }}
758758
env:
759759
DIST_TRY_BUILD: 1
760+
DOWNLOAD_RUSTC: 1
760761
<<: [*shared-ci-variables, *prod-variables]
761762
if: github.event_name == 'push' && (((github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust') || ((github.ref == 'refs/heads/automation/bors/try') && github.repository == 'rust-lang/rust'))
762763
strategy:

src/tools/opt-dist/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ enum EnvironmentCmd {
9898
}
9999

100100
fn is_try_build() -> bool {
101-
std::env::var("DIST_TRY_BUILD").unwrap_or_else(|_| "0".to_string()) != "0"
101+
// std::env::var("DIST_TRY_BUILD").unwrap_or_else(|_| "0".to_string()) != "0";
102+
false
102103
}
103104

104105
fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)> {

0 commit comments

Comments
 (0)