Home
last modified time | relevance | path

Searched +full:test +full:- +full:nightly (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/third_party/rust/crates/minimal-lexical/docs/
DDevelopment.md3test lexical, only a Rust toolchain (1.31+) is required. However, for reasons described below, we…
7 cargo +nightly build
8 cargo +nightly test
13-documented members is not stable, and any changes to this code is not considered a breaking chang…
22 In order to fully test and develop lexical, a recent, nightly compiler along with following Rust de…
24 - Clippy
25 - Rustfmt
26 - Miri
27 - Valgrind
28 - Tarpaulin
[all …]
/third_party/rust/crates/memoffset/.github/workflows/
Dci.yml6 test:
7 name: Test Suite
8 runs-on: ubuntu-latest
12 - stable
13 - beta
14 - nightly
16 - uses: actions/checkout@v2
17 - uses: actions-rs/toolchain@v1
21 - name: Run cargo test
22 run: cargo test
[all …]
/third_party/rust/crates/is-terminal/.github/workflows/
Dmain.yml6 - main
12 runs-on: ubuntu-latest
14 - uses: actions/checkout@v3
17 - uses: ./.github/actions/install-rust
20 - run: cargo fmt --all -- --check
24 runs-on: ${{ matrix.os }}
27 build: [stable, nightly]
29 - build: stable
30 os: ubuntu-latest
32 - build: nightly
[all …]
/third_party/rust/crates/io-lifetimes/.github/workflows/
Dmain.yml6 - main
12 runs-on: ubuntu-latest
14 - uses: actions/checkout@v3
17 - uses: ./.github/actions/install-rust
20 - run: cargo fmt --all -- --check
24 runs-on: ${{ matrix.os }}
27 build: [stable, nightly]
29 - build: stable
30 os: ubuntu-latest
32 - build: nightly
[all …]
/third_party/rust/rust/src/tools/clippy/book/src/development/
Dadding_lints.md8 because that's clearly a non-descriptive name.
10 - [Adding a new lint](#adding-a-new-lint)
11 - [Setup](#setup)
12 - [Getting Started](#getting-started)
13 - [Defining Our Lint](#defining-our-lint)
14 - [Standalone](#standalone)
15 - [Specific Type](#specific-type)
16 - [Tests Location](#tests-location)
17 - [Testing](#testing)
18 - [Cargo lints](#cargo-lints)
[all …]
/third_party/rust/crates/proc-macro2/.github/workflows/
Dci.yml13 RUSTFLAGS: -Dwarnings
19 test:
23 runs-on: ubuntu-latest
25 fail-fast: false
28 timeout-minutes: 45
30 - uses: actions/checkout@v4
31 - uses: dtolnay/rust-toolchain@master
34 components: rust-src
35 - run: cargo test
36 - run: cargo test --no-default-features
[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
25 - name: Run rustfmt
26 run: cargo fmt --all -- --check
30 runs-on: ubuntu-latest
32 fail-fast: false
[all …]
/third_party/rust/crates/log/.github/workflows/
Dmain.yml5 test:
6 name: Test
7 runs-on: ${{ matrix.os }}
10 build: [stable, beta, nightly, macos, win32, win64, mingw]
12 - build: stable
13 os: ubuntu-latest
15 - build: beta
16 os: ubuntu-latest
18 - build: nightly
19 os: ubuntu-latest
[all …]
/third_party/flatbuffers/tests/
DRustTest.sh2 set -e
10 # http://www.apache.org/licenses/LICENSE-2.0
18 if [[ "$1" == "mips-unknown-linux-gnu" ]]; then
19 TARGET_FLAG="--target mips-unknown-linux-gnu"
20 export CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc
21 export CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu"
35 cargo run $TARGET_FLAG -- --quiet
39 rustup install nightly
40 rustup component add rust-src --toolchain nightly
41 rustup target add thumbv7m-none-eabi
[all …]
/third_party/rust/crates/minimal-lexical/.github/workflows/
DValgrind.yml11 runs-on: ubuntu-latest
13 fail-fast: true
15 - uses: actions/checkout@v2
16 - name: Install latest nightly
17 uses: actions-rs/toolchain@v1
19 toolchain: nightly
21 - run: sudo apt-get install valgrind
22 - run: cargo +nightly install cargo-valgrind
23 - run: cargo +nightly valgrind test --release
24 - run: cargo +nightly valgrind test --all-features --release
DFeatures.yml10 name: Test Feature Combinations
11 runs-on: ubuntu-latest
13 fail-fast: true
15 - uses: actions/checkout@v2
16 - name: Install latest nightly
17 uses: actions-rs/toolchain@v1
19 toolchain: nightly
22 - run: ci/test.sh
23 - run: NIGHTLY=1 NO_STD=1 ci/test.sh
/third_party/rust/crates/serde/.github/workflows/
Dci.yml13 RUSTFLAGS: -Dwarnings
16 test:
17 name: Test suite
18 runs-on: ubuntu-latest
19 timeout-minutes: 45
21 - uses: actions/checkout@v4
22 - uses: dtolnay/rust-toolchain@nightly
23 - run: cd test_suite && cargo test --features unstable
26 name: Test suite (windows)
27 runs-on: windows-latest
[all …]
/third_party/rust/crates/libloading/.github/workflows/
Dlibloading.yml2 group: ${{ github.workflow }}-${{ github.ref }}
3 cancel-in-progress: true
8 paths-ignore: ['*.mkd', 'LICENSE']
13 native-test:
14 runs-on: ${{ matrix.os }}
16 fail-fast: false
18 rust_toolchain: [nightly, stable, 1.40.0]
19 os: [ubuntu-latest, windows-latest, macOS-latest]
20 timeout-minutes: 20
22 - uses: actions/checkout@v2
[all …]
/third_party/rust/crates/nom/.github/workflows/
Dci.yml11 test:
12 name: Test
13 runs-on: ubuntu-latest
18 - stable
19 - beta
20 - nightly
21 - 1.48.0
24 - ''
27 - rust: stable
29 - rust: stable
[all …]
/third_party/rust/crates/syn/.github/workflows/
Dci.yml13 RUSTFLAGS: -Dwarnings
19 test:
23 runs-on: ubuntu-latest
24 timeout-minutes: 45
26 - uses: actions/checkout@v4
27 - uses: dtolnay/rust-toolchain@nightly
29 components: llvm-tools, rustc-dev
30 - run: cargo test --all-features --release --tests
36 runs-on: ${{matrix.os || 'ubuntu'}}-latest
38 fail-fast: false
[all …]
/third_party/rust/crates/lazy-static.rs/
D.travis.yml4 - rust: 1.27.2
5 - rust: stable
7 - cargo test
8 - cargo test --features spin_no_std
9 - os: osx
10 - rust: beta
11 - rust: nightly
13 - cargo test
14 - cargo bench
15 - cargo test --features spin_no_std
[all …]
Dappveyor.yml12 - 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
29 # Nightly channel
30 - TARGET: i686-pc-windows-gnu
[all …]
/third_party/rust/crates/memchr/.github/workflows/
Dci.yml5 - master
8 - master
10 - cron: '00 01 * * *'
12 test:
13 name: test
15 # For some builds, we use cross to test on 32-bit and big-endian
18 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`.
22 runs-on: ${{ matrix.os }}
26 - pinned
27 - stable
[all …]
/third_party/rust/crates/regex/.github/workflows/
Dci.yml6 - master
8 - cron: '00 01 * * *'
10 # The section is needed to drop write-all permissions that are granted on
16 # on pull-requests, etc. may need additional permissions:
19 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
21 # Reference for how to assign permissions on a job-by-job basis:
22 # https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
25 # https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for
31 test:
32 name: test
[all …]
/third_party/rust/crates/aho-corasick/.github/workflows/
Dci.yml6 - master
8 - cron: '00 01 * * *'
10 test:
11 name: test
13 # For some builds, we use cross to test on 32-bit and big-endian
16 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`.
18 runs-on: ${{ matrix.os }}
22 - pinned
23 - stable
24 - stable-32
[all …]
/third_party/rust/rust/src/tools/rustfmt/config_proc_macro/src/
Dlib.rs17 pub fn config_type(_args: TokenStream, input: TokenStream) -> TokenStream { in config_type()
21 #[cfg(feature = "debug-with-rustfmt")] in config_type()
29 /// Used to conditionally output the TokenStream for tests that need to be run on nightly only.
35 /// #[test]
41 pub fn nightly_only_test(_args: TokenStream, input: TokenStream) -> TokenStream { in nightly_only_test()
42 // if CFG_RELEASE_CHANNEL is not set we default to nightly, hence why the default is true in nightly_only_test()
43 if option_env!("CFG_RELEASE_CHANNEL").map_or(true, |c| c == "nightly" || c == "dev") { in nightly_only_test()
46 // output an empty token stream if CFG_RELEASE_CHANNEL is not set to "nightly" or "dev" in nightly_only_test()
57 /// #[test]
63 pub fn stable_only_test(_args: TokenStream, input: TokenStream) -> TokenStream { in stable_only_test()
[all …]
/third_party/rust/rust/compiler/rustc_error_codes/src/error_codes/
DE0549.md8 #![stable(since = "1.0.0", feature = "test")]
22 #![stable(since = "1.0.0", feature = "test")]
24 #[stable(since = "1.0.0", feature = "test")]
32 See the [How Rust is Made and “Nightly Rust”][how-rust-made-nightly] appendix
33 of the Book and the [Stability attributes][stability-attributes] section of the
36 [how-rust-made-nightly]: https://doc.rust-lang.org/book/appendix-07-nightly-rust.html
37 [stability-attributes]: https://rustc-dev-guide.rust-lang.org/stability.html
/third_party/rust/crates/rustix/.github/workflows/
Dtest-users.yml1 # Test a selection of projects which depend on rustix.
3 name: Test rustix's users
10 runs-on: ${{ matrix.os }}
15 …build: [ubuntu, i686-linux, aarch64-linux, powerpc64le-linux, riscv64-linux, mipsel-linux, mips64e…
17 - build: ubuntu
18 os: ubuntu-latest
19 rust: nightly
20 - build: i686-linux
21 os: ubuntu-latest
22 rust: nightly
[all …]
/third_party/rust/crates/bindgen/bindgen/
Dfeatures.rs14 Nightly => {$($nightly_feature:ident $(: #$issue:literal)?),* $(,)?} $(,)?
29 /// Rust Nightly
31 "- [`", stringify!($nightly_feature), "`]",
32 "(", $("https://github.com/rust-lang/rust/pull/", stringify!($issue),)* ")",
34 Nightly,
38 "- [`", stringify!($feature), "`]",
39 "(", $("https://github.com/rust-lang/rust/pull/", stringify!($pull),)* ")",
47 fn minor(self) -> Option<u64> {
50 Self::Nightly => None
54 const fn stable_releases() -> [(Self, u64); [$($minor,)*].len()] {
[all …]
/third_party/rust/crates/quote/.github/workflows/
Dci.yml13 RUSTFLAGS: -Dwarnings
19 test:
23 runs-on: ubuntu-latest
25 fail-fast: false
27 rust: [nightly, stable, beta, 1.56.0]
28 timeout-minutes: 45
30 - uses: actions/checkout@v4
31 - uses: dtolnay/rust-toolchain@master
34 components: rust-src
35 - name: Enable type layout randomization
[all …]

12345678910>>...15