Home
last modified time | relevance | path

Searched +full:rustup +full:- +full:init (Results 1 – 23 of 23) sorted by relevance

/third_party/mesa3d/.gitlab-ci/windows/
Dmesa_deps_rust.ps17 Write-Host "Installing rust at:"
8 Get-Date
9 $url = 'https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe';
10 Write-Host ('Downloading {0} ...' -f $url);
11 Invoke-WebRequest -Uri $url -OutFile 'rustup-init.exe';
12 Write-Host "Installing rust toolchain"
13 .\rustup-init.exe -y;
14 Remove-Item rustup-init.exe;
16 Write-Host "Installing rust finished at:"
17 Get-Date
/third_party/rust/rust/src/tools/rustfmt/.github/workflows/
Dwindows.yml5 - master
10 runs-on: windows-latest
15 …# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usag…
16 # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
19 max-parallel: 2
20 fail-fast: false
23 i686-pc-windows-gnu,
24 i686-pc-windows-msvc,
25 x86_64-pc-windows-gnu,
26 x86_64-pc-windows-msvc,
[all …]
Drustdoc_check.yml5 - master
10 runs-on: ubuntu-latest
13 - name: checkout
16 - name: install rustup
18 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
19 sh rustup-init.sh -y --default-toolchain none
20 rustup target add x86_64-unknown-linux-gnu
22 - name: document rustfmt
24 …RUSTDOCFLAGS: --document-private-items --enable-index-page --show-type-layout --generate-link-to-d…
25 …run: cargo doc -Zskip-rustdoc-fingerprint --no-deps -p rustfmt-nightly -p rustfmt-config_proc_macro
Dmac.yml5 - master
10 …n/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runn…
12 runs-on: macos-latest
17 fail-fast: false
20 x86_64-apple-darwin,
25 - name: checkout
29 - name: install rustup
31 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
32 sh rustup-init.sh -y --default-toolchain none
33 rustup target add ${{ matrix.target }}
[all …]
Dcheck_diff.yml20 runs-on: ubuntu-latest
23 - name: checkout
26 - name: install rustup
28 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
29 sh rustup-init.sh -y --default-toolchain none
30 rustup target add x86_64-unknown-linux-gnu
32 - name: check diff
Dlinux.yml5 - master
10 runs-on: ubuntu-latest
15 …# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usag…
16 # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
19 max-parallel: 1
20 fail-fast: false
23 x86_64-unknown-linux-gnu,
28 - name: checkout
32 - name: install rustup
34 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup-init.sh
[all …]
Dupload-assets.yml10 build-release:
11 name: build-release
14 build: [linux-x86_64, macos-x86_64, windows-x86_64-gnu, windows-x86_64-msvc]
16 - build: linux-x86_64
17 os: ubuntu-latest
19 target: x86_64-unknown-linux-gnu
20 - build: macos-x86_64
21 os: macos-latest
23 target: x86_64-apple-darwin
24 - build: windows-x86_64-gnu
[all …]
Dintegration.yml5 - master
9 integration-tests:
10 runs-on: ubuntu-latest
13 …# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usag…
14 # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
17 max-parallel: 4
18 fail-fast: false
22 error-chain,
26 rust-semverver,
28 futures-rs,
[all …]
/third_party/rust/crates/cfg-if/.github/workflows/
Dmain.yml7 runs-on: ubuntu-latest
12 - uses: actions/checkout@master
13 - name: Install Rust Stable
15 rustup self update
16 rustup update ${{ matrix.rust }}
17 rustup default ${{ matrix.rust }}
18 rustc -vV
19 - name: Run tests
24 runs-on: ubuntu-latest
26 - uses: actions/checkout@master
[all …]
/third_party/rust/crates/lazy-static.rs/
Dappveyor.yml5 # libcurl backend as libcurl checks by default, but rustup doesn't provide the
12 - TARGET: i686-pc-windows-gnu
14 - TARGET: i686-pc-windows-msvc
16 - TARGET: x86_64-pc-windows-gnu
18 - TARGET: x86_64-pc-windows-msvc
21 - TARGET: i686-pc-windows-gnu
23 - TARGET: i686-pc-windows-msvc
25 - TARGET: x86_64-pc-windows-gnu
27 - TARGET: x86_64-pc-windows-msvc
30 - TARGET: i686-pc-windows-gnu
[all …]
/third_party/rust/crates/libc/ci/
Drun-docker.sh9 set -ex
13 DEFAULT_CARGO_HOME="$(dirname "$(dirname "$(command -v cargo)")")"
16 CARGO_HOME="${CARGO_HOME:-$DEFAULT_CARGO_HOME}"
22 if [ "${1}" = "aarch64-linux-android" ] ; then
23 docker system prune -af
30 # use -f so we can use ci/ as build context
31 docker build -t "libc-${1}" -f "ci/docker/${1}/Dockerfile" ci/
32 mkdir -p target
33 if [ -w /dev/kvm ]; then
34 kvm="--volume /dev/kvm:/dev/kvm"
[all …]
/third_party/rust/crates/bindgen/
Dappveyor.yml5 - TARGET: gnu
6 LLVM_VERSION: 9.0.0-1
8 - TARGET: gnu
11 - TARGET: msvc
14 - TARGET: msvc
19 - stable
20 - nightly
23 - x64
24 - x86
28 - main
[all …]
/third_party/rust/rust/library/portable-simd/.github/workflows/
Dci.yml7 - master
16 runs-on: ubuntu-latest
19 - uses: actions/checkout@v2
20 - name: Setup Rust
22 rustup update nightly --no-self-update
23 rustup default nightly
24 rustup component add rustfmt
25 - name: Run rustfmt
26 run: cargo fmt --all -- --check
30 runs-on: ubuntu-latest
[all …]
/third_party/rust/rust/src/tools/miri/
D.gitpod.yml4 - before: echo "..."
5 init: |
6 cargo install rustup-toolchain-install-master
/third_party/rust/rust/compiler/rustc_codegen_gcc/build_sysroot/
Dprepare_sysroot_src.sh2 set -e
5 SRC_DIR=$(dirname $(rustup which rustc))"/../lib/rustlib/src/rust/"
8 if [ ! -e $SRC_DIR ]; then
9 echo "Please install rust-src component"
13 rm -rf $DST_DIR
14 mkdir -p $DST_DIR/library
15 cp -r $SRC_DIR/library $DST_DIR/
18 echo "[GIT] init"
19 git init
26 # Even using --author is not enough.
[all …]
/third_party/rust/rust/src/tools/rustfmt/ci/
Dcheck_diff.sh7 if [ $# -le 1 ]; then
26 GIT_TERMINAL_PROMPT=0 git clone --quiet $1 --depth 1 $2 && cd $2
34 git submodule update --init $1
37 # Run rusfmt with the --check flag to see if a diff is produced.
48 if [ -z "$3" ]; then
49 config="--config=error_on_line_overflow=false,error_on_unformatted=false"
51 …config="--config=error_on_line_overflow=false,error_on_unformatted=false,$OPTIONAL_RUSTFMT_CONFIGS"
56 $1 --unstable-features --skip-children --check --color=always $config $i >> $2 2>/dev/null
78 # we don't add color to the diff since we added color when running rustfmt --check.
79 # tail -n + 6 removes the git diff header info
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dbuild-deqp-runner.sh5 # .gitlab-ci/image-tags.yml tags:
10 set -uex
12 uncollapsed_section_start deqp-runner "Building deqp-runner"
22 DEQP_RUNNER_GIT_URL="${DEQP_RUNNER_GIT_URL:-https://gitlab.freedesktop.org/mesa/deqp-runner.git}"
24 if [ -n "${DEQP_RUNNER_GIT_TAG:-}" ]; then
26 elif [ -n "${DEQP_RUNNER_GIT_REV:-}" ]; then
34 mkdir -p /deqp-runner
35 pushd /deqp-runner
36 mkdir deqp-runner-git
37 pushd deqp-runner-git
[all …]
/third_party/mesa3d/.gitlab-ci/container/debian/
Dx86_64_test-android.sh6 # .gitlab-ci/image-tags.yml tags:
9 set -e
11 . .gitlab-ci/setup-test-env.sh
13 set -o xtrace
19 build-essential:native
22 config-package-dev
23 debhelper-compat
24 dpkg-dev
25 ninja-build
33 apt-get install -y --no-remove --no-install-recommends \
[all …]
/third_party/rust/rust/src/tools/rust-analyzer/docs/user/
Dmanual.adoc4 :page-layout: post
6 :source-highlighter: rouge
10 IMPORTANT: the master copy of this document lives in the https://github.com/rust-lang/rust-analyzer…
13 At its core, rust-analyzer is a *library* for semantic analysis of Rust code as it changes over tim…
14 This manual focuses on a specific usage of the library -- running it as part of a server that imple…
15 https://microsoft.github.io/language-server-protocol/[Language Server Protocol] (LSP).
22 https://github.com/rust-lang/rust-analyzer/blob/master/docs/user/manual.adoc[https://github.com/rus…
24 … which are generated from the source code. Run `cargo test` and `cargo test -p xtask` to create th…
27 If you have questions about using rust-analyzer, please ask them in the https://users.rust-lang.org…
31 In theory, one should be able to just install the <<rust-analyzer-language-server-binary,`rust-anal…
[all …]
/third_party/rust/rust/src/ci/docker/
Drun.sh3 set -e
12 while [[ $# -gt 0 ]]
15 --dev)
19 if [ -n "$image" ]
31 docker_dir="${script_dir}/host-$(uname -m)"
41 CACHE_DOMAIN="${CACHE_DOMAIN:-ci-caches.rust-lang.org}"
43 if [ -f "$docker_dir/$image/Dockerfile" ]; then
45 hash_key=/tmp/.docker-hash-key.txt
46 rm -f "${hash_key}"
51 copied_files=/tmp/.docker-copied-files.txt
[all …]
/third_party/rust/rust/
DRELEASES.md1 Version 1.77.2 (2024-04-09)
6 - [CVE-2024-24576: fix escaping of Windows batch file arguments in `std::process::Command`](https:/…
7 - Fix `Command`'s batch files argument escaping not working when file name has trailing whitespace …
9 Version 1.72.0 (2023-08-24)
12 <a id="1.72.0-Language"></a>
15 --------
17 - [Replace const eval limit by a lint and add an exponential backoff warning](https://github.com/ru…
18 - [expand: Change how `#![cfg(FALSE)]` behaves on crate root](https://github.com/rust-lang/rust/pul…
19 - [Stabilize inline asm for LoongArch64](https://github.com/rust-lang/rust/pull/111235/)
20 - [Uplift `clippy::undropped_manually_drops` lint](https://github.com/rust-lang/rust/pull/111530/)
[all …]
/third_party/rust/rust/compiler/rustc_session/src/
Doptions.rs78 pub fn dep_tracking_hash(&self, for_crate_hash: bool) -> u64 {
107 /// The top-level command-line options struct.
111 /// square-bracketed directive after the field type. The options are:
113 /// - `[TRACKED]`
117 /// - `[TRACKED_NO_CRATE_HASH]`
121 /// - `[UNTRACKED]`
124 /// - `[SUBSTRUCT]`
125 /// Second-level sub-structs containing more options.
127 /// If you add a new option to this struct or one of the sub-structs like
130 /// unnecessary re-compilation.
[all …]
/third_party/mesa3d/
D.pick_status.json144 "description": "zink: alloc bo ids for non-slab bos too",
174 … "description": "zink: Revert \"zink: enable single-plane modifiers for generic 2D exports\"",
514 "description": "etnaviv/ci: Update flakes for gc7000-r6214",
554 "description": "radv: add experimental support for AMD BC-250 board",
564 "description": "tu: fix zero-index perfcntr collection for derived counters",
584 "description": "r600: fix the indirect draw 8-bits path",
624 "description": "ci/lava: Add U-Boot action timeout for rockchip DUTs",
654 "description": "ci/lava: Drop the repeating quotes on lava-test-case",
924 "description": "glapi: remove support for dynamically-registered functions",
954 "description": "glapi: don't export always-private functions",
[all …]