| /third_party/rust/crates/clap/clap_bench/benches/ |
| D | 06_rustup.rs | 3 // CLI used is from rustup 408ed84f0e50511ed44a405dd91365e5da588790 20 b.iter(|| build_cli().get_matches_from(vec!["rustup override add stable"])) in parse_rustup_with_sc() 25 Command::new("rustup") in build_cli() 55 .help("Don't perform self update when running the `rustup` command") in build_cli() 284 .about("Modify the rustup installation") in build_cli() 285 .subcommand(Command::new("update").about("Download and install updates to rustup")) in build_cli() 288 .about("Uninstall rustup.") in build_cli() 297 .about("rustup telemetry commands") in build_cli() 299 .subcommand(Command::new("enable").about("Enable rustup telemetry")) in build_cli() 300 .subcommand(Command::new("disable").about("Disable rustup telemetry")) in build_cli() [all …]
|
| /third_party/rust/crates/nix/ |
| D | .cirrus.yml | 54 - fetch https://sh.rustup.rs -o rustup.sh 55 - sh rustup.sh -y --profile=minimal --default-toolchain $TOOLCHAIN 57 - rustup target add i686-unknown-freebsd 58 - rustup component add --toolchain $TOOLCHAIN clippy 78 - curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs 79 - sh rustup.sh -y --profile=minimal --default-toolchain $TOOLCHAIN 81 - rustup component add --toolchain $TOOLCHAIN clippy 131 - curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs 132 - sh rustup.sh -y --profile=minimal --default-toolchain $TOOLCHAIN 158 - rustup target add $TARGET [all …]
|
| /third_party/rust/crates/log/.github/workflows/ |
| D | main.yml | 35 - name: Install Rust (rustup) 37 rustup update ${{ matrix.rust }} --no-self-update 38 rustup default ${{ matrix.rust }} 58 rustup update stable --no-self-update 59 rustup default stable 60 rustup component add rustfmt 70 rustup update nightly --no-self-update 71 rustup default nightly 86 rustup update nightly --no-self-update 87 rustup default nightly [all …]
|
| /third_party/rust/crates/libc/ci/ |
| D | install-rust.sh | 15 rustup set profile minimal 16 rustup update --force $toolchain-"$TARGET" 17 rustup default $toolchain-"$TARGET" 19 rustup set profile minimal 20 rustup update --force $toolchain 21 rustup default $toolchain 26 rustup target add "$TARGET" 31 rustup component add rust-src 57 command -v rustup 60 rustup -Vv [all …]
|
| D | run-docker.sh | 69 cp "$(command -v rustup)" "$(rustc --print sysroot)/bin" 81 --volume ~/.rustup:/.rustup:Z \ 86 sh -c "HOME=/tmp RUSTUP_HOME=/tmp PATH=\$PATH:/rust/bin rustup default nightly \ 87 && rustup component add rust-src --target ci/switch.json \
|
| /third_party/rust/crates/libloading/.github/workflows/ |
| D | libloading.yml | 23 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal 24 - run: rustup default ${{ matrix.rust_toolchain }} 25 - run: rustup component add clippy 52 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal 53 - run: rustup default ${{ matrix.rust_toolchain }} 54 - run: rustup target add ${{ matrix.rust_target }} 85 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal 86 - run: rustup default ${{ matrix.rust_toolchain }} 87 - run: rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }} 102 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal [all …]
|
| /third_party/rust/crates/libc/ |
| D | .cirrus.yml | 7 - curl https://sh.rustup.rs -sSf --output rustup.sh 8 - sh rustup.sh -y --default-toolchain nightly --profile=minimal 21 - curl https://sh.rustup.rs -sSf --output rustup.sh 22 - sh rustup.sh -y --default-toolchain nightly --profile=minimal 35 - curl https://sh.rustup.rs -sSf --output rustup.sh 36 - sh rustup.sh -y --default-toolchain nightly --profile=minimal
|
| /third_party/rust/crates/cfg-if/.github/workflows/ |
| D | main.yml | 15 rustup self update 16 rustup update ${{ matrix.rust }} 17 rustup default ${{ matrix.rust }} 29 rustup update stable 30 rustup default stable 31 rustup component add rustfmt 42 rustup update stable 43 rustup default stable
|
| /third_party/rust/crates/bindgen/book/src/ |
| D | code-formatting.md | 18 but you have `rustup` available, you can use `nightly` by following these 23 Use `rustup run` to run `bindgen`: 26 $ rustup run nightly bindgen [ARGS] 33 $ rustup which rustfmt --toolchain=nightly 43 let output = Command::new("rustup") 46 .expect("Could not spawn `rustup` command"); 50 "Unsuccessful status code when running `rustup`: {:?}",
|
| /third_party/rust/crates/rustix/.github/actions/install-rust/ |
| D | README.md | 3 A small github action to install `rustup` and a Rust toolchain. This is 11 * `rustup` isn't installed on macOS (a bug in Github Actions) 16 - run: rustup update $toolchain && rustup default $toolchain
|
| D | main.js | 12 child_process.execFileSync('rustup', ['self', 'update']); 15 child_process.execFileSync('rustup', ['set', 'profile', 'minimal']); 16 child_process.execFileSync('rustup', ['update', toolchain, '--no-self-update']); 17 child_process.execFileSync('rustup', ['default', toolchain]);
|
| /third_party/rust/crates/io-lifetimes/.github/actions/install-rust/ |
| D | README.md | 3 A small github action to install `rustup` and a Rust toolchain. This is 11 * `rustup` isn't installed on macOS (a bug in Github Actions) 16 - run: rustup update $toolchain && rustup default $toolchain
|
| D | main.js | 12 child_process.execFileSync('rustup', ['self', 'update']); 15 child_process.execFileSync('rustup', ['set', 'profile', 'minimal']); 16 child_process.execFileSync('rustup', ['update', toolchain, '--no-self-update']); 17 child_process.execFileSync('rustup', ['default', toolchain]);
|
| /third_party/rust/crates/linux-raw-sys/.github/actions/install-rust/ |
| D | README.md | 3 A small github action to install `rustup` and a Rust toolchain. This is 11 * `rustup` isn't installed on macOS (a bug in Github Actions) 16 - run: rustup update $toolchain && rustup default $toolchain
|
| D | main.js | 12 child_process.execFileSync('rustup', ['self', 'update']); 15 child_process.execFileSync('rustup', ['set', 'profile', 'minimal']); 16 child_process.execFileSync('rustup', ['update', toolchain, '--no-self-update']); 17 child_process.execFileSync('rustup', ['default', toolchain]);
|
| /third_party/rust/crates/is-terminal/.github/actions/install-rust/ |
| D | README.md | 3 A small github action to install `rustup` and a Rust toolchain. This is 11 * `rustup` isn't installed on macOS (a bug in Github Actions) 16 - run: rustup update $toolchain && rustup default $toolchain
|
| D | main.js | 12 child_process.execFileSync('rustup', ['self', 'update']); 15 child_process.execFileSync('rustup', ['set', 'profile', 'minimal']); 16 child_process.execFileSync('rustup', ['update', toolchain, '--no-self-update']); 17 child_process.execFileSync('rustup', ['default', toolchain]);
|
| /third_party/rust/crates/rustix/ |
| D | .cirrus.yml | 10 - curl https://sh.rustup.rs -sSf --output rustup.sh 11 - sh rustup.sh --default-toolchain stable -y --profile=minimal 13 - rustup default stable
|
| /third_party/flatbuffers/tests/ |
| D | RustTest.sh | 39 rustup install nightly 40 rustup component add rust-src --toolchain nightly 41 rustup target add thumbv7m-none-eabi 58 rustup component add clippy 74 rustup +nightly component add miri
|
| /third_party/mesa3d/.gitlab-ci/container/ |
| D | build-rust.sh | 8 # cargo (and rustup) wants to store stuff in $HOME/.cargo, and binaries in 14 # For rust in Mesa, we use rustup to install. This lets us pick an arbitrary 19 # snapshot from rustup so the compiler doesn't drift on us. 20 wget https://sh.rustup.rs -O - | \
|
| /third_party/rust/crates/minimal-lexical/docs/ |
| D | Development.md | 35 rustup toolchain install nightly 36 rustup +nightly component add clippy 37 rustup +nightly component add rustfmt 38 rustup +nightly component add miri 53 …mpiler features are used. This requires a nightly compiler installed via Rustup, which can be invo…
|
| /third_party/rust/crates/lazy-static.rs/ |
| D | appveyor.yml | 5 # libcurl backend as libcurl checks by default, but rustup doesn't provide the 42 - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe 43 - rustup-init.exe -y --default-toolchain %CHANNEL% --default-host %TARGET%
|
| /third_party/rust/crates/bindgen/ci/ |
| D | test.sh | 80 …local toolchain="nightly-$(curl https://rust-lang.github.io/rustup-components-history/$(rustup tar… 81 rustup update "$toolchain" 82 rustup component add rustfmt --toolchain "$toolchain" 83 export RUSTFMT="$(rustup which --toolchain "$toolchain" rustfmt)"
|
| /third_party/rust/crates/linux-raw-sys/.github/workflows/ |
| D | main.yml | 22 rustup set profile minimal 23 rustup install ${{ matrix.rust }} 24 rustup default ${{ matrix.rust }} 46 rustup target add
|
| /third_party/mesa3d/.gitlab-ci/windows/ |
| D | mesa_deps_test.ps1 | 126 $url = 'https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe'; 128 Invoke-WebRequest -Uri $url -OutFile 'rustup-init.exe'; 130 C:\rustup-init.exe -y; 131 Remove-Item C:\rustup-init.exe;
|