diff options
author | Brian Warner <warner@lothar.com> | 2018-10-16 15:16:55 -0700 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-10-16 15:18:05 -0700 |
commit | d85aec37a24e0deda517a2d05c946df089e55080 (patch) | |
tree | a2aaa1ce815710b27d29e817ede3a90acde4806a | |
parent | 04f891874c8ed66d124456d6a0189ecfc24bd597 (diff) | |
download | PAKEs-d85aec37a24e0deda517a2d05c946df089e55080.tar.xz |
delete spake2/.travis.yml and .gitignore, subsumed by top-level files
-rw-r--r-- | spake2/.gitignore | 11 | ||||
-rw-r--r-- | spake2/.travis.yml | 40 |
2 files changed, 0 insertions, 51 deletions
diff --git a/spake2/.gitignore b/spake2/.gitignore deleted file mode 100644 index 8006158..0000000 --- a/spake2/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -# Generated by Cargo -# will have compiled files and executables -/target/ - -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock -Cargo.lock - -# These are backup files generated by rustfmt -**/*.rs.bk -/cobertura.xml diff --git a/spake2/.travis.yml b/spake2/.travis.yml deleted file mode 100644 index 3998753..0000000 --- a/spake2/.travis.yml +++ /dev/null @@ -1,40 +0,0 @@ -language: rust - -rust: - - stable - - beta - - nightly - -os: - - linux - - osx - -branches: - except: - - /^WIP-.*$/ - -matrix: - include: - - rust: 1.26.0 # lock down for consistent rustfmt behavior - env: RUSTFMT - install: - - rustup component add rustfmt-preview - script: - - cargo fmt -- --write-mode=diff - allow_failures: - - rust: nightly - -script: - - cargo clean - - cargo build --verbose --all -# - cargo run --verbose --example XYZ -# - cargo test --verbose --features "test" --all - - cargo test --verbose --all - -after_success: | - if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then - bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh) - # Uncomment the following two lines create and upload a report for codecov.io - cargo tarpaulin --out Xml - bash <(curl -s https://codecov.io/bash) - fi |