Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: smoltcp-rs/smoltcp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2f80e1ac6a92
Choose a base ref
...
head repository: smoltcp-rs/smoltcp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ae27235cc427
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 3, 2020

  1. CI: check for bench breakages

    Closes: #321
    Approved by: whitequark
    jhwgh1968 authored and Homu committed Jan 3, 2020
    Copy the full SHA
    ae27235 View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 .travis.yml
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -46,6 +46,8 @@ matrix:
env: MODE='fuzz run' ARGS='packet_parser -- -max_len=1536 -max_total_time=30'
- rust: nightly
env: FEATURES='default' MODE='clippy'
- rust: nightly
env: FEATURES='default' MODE='check --bench bench'
- os: osx
rust: nightly
env: FEATURES='default' MODE='build'
@@ -57,6 +59,9 @@ matrix:
# Clippy sometimes fails to compile and this shouldn't gate merges
- rust: nightly
env: FEATURES='default' MODE='clippy'
# See if the bench actually breaks
- rust: nightly
env: FEATURES='default' MODE='check --bench bench'
before_script:
- if [ "$MODE" == "fuzz run" ]; then cargo install cargo-fuzz; fi
- if [ "$MODE" == "clippy" ]; then cargo install clippy; fi