summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.builds/msrv.yml16
-rw-r--r--.builds/stable.yml16
2 files changed, 32 insertions, 0 deletions
diff --git a/.builds/msrv.yml b/.builds/msrv.yml
new file mode 100644
index 0000000..913a6c2
--- /dev/null
+++ b/.builds/msrv.yml
@@ -0,0 +1,16 @@
+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
new file mode 100644
index 0000000..d4203e5
--- /dev/null
+++ b/.builds/stable.yml
@@ -0,0 +1,16 @@
+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
+