From b7846a4e2f41cfe38889aae4a3ffdf313913d482 Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Mon, 24 Jun 2019 17:31:00 -0700 Subject: [PATCH] process: Remove unneeded files --- .gitignore | 2 -- .travis.yml | 55 ---------------------------------------------------- appveyor.yml | 17 ---------------- codecov.yml | 6 ------ 4 files changed, 80 deletions(-) delete mode 100644 .gitignore delete mode 100644 .travis.yml delete mode 100644 appveyor.yml delete mode 100644 codecov.yml diff --git a/.gitignore b/.gitignore deleted file mode 100644 index a9d37c560..000000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -target -Cargo.lock diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1d3369313..000000000 --- a/.travis.yml +++ /dev/null @@ -1,55 +0,0 @@ -language: rust -sudo: false - -matrix: - include: - # This represents the minimum Rust version supported by - # Tokio. Updating this should be done in a dedicated PR and - # cannot be greater than two 0.x releases prior to the - # current stable. - # - # Tests are not run as tests may require newer versions of - # rust. - - rust: 1.33.0 - - rust: stable - - os: osx - - rust: beta - - - rust: nightly - cache: - directories: - - $HOME/.cargo/bin - sudo: required - addons: - apt: - packages: - - libssl-dev - before_script: - - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH - script: - - cargo test - - cargo doc --no-deps --all-features - after_success: - - travis-cargo --only nightly doc-upload - - command -v cargo-install-update >/dev/null || cargo install cargo-update - - command -v cargo-tarpaulin >/dev/null || - RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin - - cargo install-update --all - - cargo tarpaulin -v --forward --out Xml - - bash <(curl -s https://codecov.io/bash) - -before_script: - - rustup component add clippy - -script: - - cargo clippy --all-targets --all-features - - cargo build - - cargo test - -env: - global: - secure: "mTrrxm6AHgbh+k6/GKhKwQoKmLF4tZQLZ7671jvJ42Yu3U6mH4xGWnQDEQ6E883SvoBi0W5KwsvRqKRqNpPXYbWIMsS46gpMu0jEL6uz7+zwip64847OdbXAbS8NZsnXhS0w5b9dYdQUCoj71TrbWGVS/sqNb2twn+GJGIqfsjUHRnkHLIMmwoILgzYMbd3d1Jy/KlicIGtHq8Sb23EVr7tdkN++k21ZSDbmD+q5Pmf9MZH3yyk2YIpgCooVzqYAtS8Ua6ug1L+u3MBDWtqUFEOxGP5ya1+s312TGsBShaVvtQrH2IFOG+izdVjvRkpeM/FJXlqQAh02VxHK8ST9B6zjYO7Mnn8yT4gAA5PfoMlwZ5UxYQmr5fcjPAWvUkIdb6qRdqEupBbtCGO4EWTi2Gw8/w8tZGMS3JqPSsl8QJCu+fj3FWRwRwKmUaFIgIojbJQ3NCRCu9RGdbOoOOlhjYbw51lN9kxGxHLiiZzEtxv+nay5vNqIVkprRz4gbXOAi27Fglz2rYie88vb7XgrAVnaoahBA7C6l7KXZ/W3EuDDGjlxChj0kAqKz9AbbKAkYGN02hOn2Y26ag/THd4LKNE7QfcaEBKfJx3YEKVBI0fmoyT+iT1RMr9vmEySJmgZXHgd6TTIIpvIN8ouIy6LxzQby0bgP1++NSH05jgf/Sk=" - -notifications: - email: - on_success: never diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 51a344250..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,17 +0,0 @@ -environment: - matrix: - - TARGET: x86_64-pc-windows-msvc -install: - - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init.exe -y --default-host %TARGET% --default-toolchain beta - - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - - rustc -V - - cargo -V - - rustup component add clippy - -build: false - -test_script: - - cargo clippy - - cargo build --target %TARGET% - - cargo test --target %TARGET% diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index 345ce912e..000000000 --- a/codecov.yml +++ /dev/null @@ -1,6 +0,0 @@ -ignore: - - "src/bin" - - "tests" - -comment: - behavior: default