summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.builds/msrv.yml16
-rw-r--r--.builds/stable.yml16
-rw-r--r--.travis.yml17
3 files changed, 0 insertions, 49 deletions
diff --git a/.builds/msrv.yml b/.builds/msrv.yml
deleted file mode 100644
index 913a6c2..0000000
--- a/.builds/msrv.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-image: debian/buster
-sources:
- - https://git.sr.ht/~matthiasbeyer/result-inspect
-tasks:
- - install: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.33.0
- - build: |
- cd result-inspect
- PATH="$HOME/.cargo/bin:$PATH" cargo build --all --all-features
- - test: |
- cd result-inspect
- PATH="$HOME/.cargo/bin:$PATH" cargo test --all --all-features
-triggers:
- - action: email
- condition: always
- to: mail@beyermatthias.de
-
diff --git a/.builds/stable.yml b/.builds/stable.yml
deleted file mode 100644
index d4203e5..0000000
--- a/.builds/stable.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-image: debian/buster
-sources:
- - https://git.sr.ht/~matthiasbeyer/result-inspect
-tasks:
- - install: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- - build: |
- cd result-inspect
- PATH="$HOME/.cargo/bin:$PATH" cargo build --all --all-features
- - test: |
- cd result-inspect
- PATH="$HOME/.cargo/bin:$PATH" cargo test --all --all-features
-triggers:
- - action: email
- condition: always
- to: mail@beyermatthias.de
-
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 798ccbd..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-language: rust
-
-rust:
- - 1.33.0
- - 1.34.0
- - 1.35.0
- - 1.36.0
- - 1.37.0
- - stable
- - beta
-
-before_script:
- - rustup component add clippy
-script:
- - cargo clippy --all-targets --all-features -- -D warnings
- - cargo build
- - cargo test