Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/authenticator/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 939 B image not shown  

Quelle  .travis.yml   Sprache: unbekannt

 
Spracherkennung für: .yml vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

os:
  - linux
  - windows

language: rust
rust:
  - stable
  - nightly
cache: cargo

jobs:
  allow_failures:
    - rust: nightly

addons:
  apt:
    packages:
      - build-essential
      - libudev-dev

install:
  - rustup component add rustfmt
  - rustup component add clippy

script:
- |
  if [ "$TRAVIS_RUST_VERSION" == "nightly" ] && [ "$TRAVIS_OS_NAME" == "linux" ] ; then
    export ASAN_OPTIONS="detect_odr_violation=1:leak_check_at_exit=0:detect_leaks=0"
    export RUSTFLAGS="-Z sanitizer=address"
  fi
- |
  if [ "$TRAVIS_RUST_VERSION" == "stable" ] && [ "$TRAVIS_OS_NAME" == "linux" ] ; then
    echo "Running rustfmt"
    cargo fmt --all -- --check
    echo "Running clippy"
    cargo clippy --all-targets --all-features -- -A renamed_and_removed_lints -A clippy::new-ret-no-self -D warnings

    rustup install nightly
    cargo install cargo-fuzz
    cargo +nightly fuzz build
  fi
- cargo test --all-targets --all-features

[Dauer der Verarbeitung: 0.16 Sekunden, vorverarbeitet 2026-08-25]