From fe838bbc3516b19b6f8106237dd078fd6a101029 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Wed, 26 Jan 2022 00:18:05 +1100 Subject: [PATCH] Remove Travis config (travis-ci.org has ceased) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Turns out travis-ci.org ceased building last year, and I either never heard or had quite forgotten. I don’t care enough to sort out anything else (I like the simple ./test script I wrote), so I’m just ditching it. So much for the effort I put into updating this nicely today! --- .travis.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b5c4583..0000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -language: rust -rust: - - 1.36.0 - - nightly - - stable -script: - - if [[ "$(rustc --version)" =~ -(dev|nightly) ]]; then cargo bench; fi - - if [[ "$(rustc --version)" =~ 1.36.0 ]]; then cp test-oldest-Cargo.lock Cargo.lock; fi - - cargo test - - cargo test --release - - cargo test --no-default-features --features hashbrown - - cargo test --release --no-default-features --features hashbrown -- 2.42.0