Integrate ruma-signatures
This commit is contained in:
parent
916586e56a
commit
e9e641a85e
@ -1,27 +0,0 @@
|
|||||||
image: archlinux
|
|
||||||
packages:
|
|
||||||
- rustup
|
|
||||||
sources:
|
|
||||||
- https://github.com/ruma/ruma-signatures
|
|
||||||
tasks:
|
|
||||||
- rustup: |
|
|
||||||
# We specify --profile minimal because we'd otherwise download docs
|
|
||||||
rustup toolchain install beta --profile minimal -c rustfmt -c clippy
|
|
||||||
rustup default beta
|
|
||||||
- test: |
|
|
||||||
cd ruma-signatures
|
|
||||||
|
|
||||||
# We don't want the build to stop on individual failure of independent
|
|
||||||
# tools, so capture tool exit codes and set the task exit code manually
|
|
||||||
set +e
|
|
||||||
|
|
||||||
cargo fmt -- --check
|
|
||||||
fmt_exit=$?
|
|
||||||
|
|
||||||
cargo clippy --all-targets --all-features -- -D warnings
|
|
||||||
clippy_exit=$?
|
|
||||||
|
|
||||||
cargo test --verbose
|
|
||||||
test_exit=$?
|
|
||||||
|
|
||||||
exit $(( $fmt_exit || $clippy_exit || $test_exit ))
|
|
@ -1,32 +0,0 @@
|
|||||||
image: archlinux
|
|
||||||
packages:
|
|
||||||
- rustup
|
|
||||||
sources:
|
|
||||||
- https://github.com/ruma/ruma-signatures
|
|
||||||
tasks:
|
|
||||||
- rustup: |
|
|
||||||
rustup toolchain install nightly --profile minimal
|
|
||||||
rustup default nightly
|
|
||||||
|
|
||||||
# Try installing rustfmt & clippy for nightly, but don't fail the build
|
|
||||||
# if they are not available
|
|
||||||
rustup component add rustfmt || true
|
|
||||||
rustup component add clippy || true
|
|
||||||
- test: |
|
|
||||||
cd ruma-signatures
|
|
||||||
|
|
||||||
# We don't want the build to stop on individual failure of independent
|
|
||||||
# tools, so capture tool exit codes and set the task exit code manually
|
|
||||||
set +e
|
|
||||||
|
|
||||||
if ( rustup component list | grep -q rustfmt ); then
|
|
||||||
cargo fmt -- --check
|
|
||||||
fi
|
|
||||||
fmt_exit=$?
|
|
||||||
|
|
||||||
if ( rustup component list | grep -q clippy ); then
|
|
||||||
cargo clippy --all-targets --all-features -- -D warnings
|
|
||||||
fi
|
|
||||||
clippy_exit=$?
|
|
||||||
|
|
||||||
exit $(( $fmt_exit || $clippy_exit ))
|
|
@ -1,29 +0,0 @@
|
|||||||
image: archlinux
|
|
||||||
packages:
|
|
||||||
- rustup
|
|
||||||
sources:
|
|
||||||
- https://github.com/ruma/ruma-signatures
|
|
||||||
tasks:
|
|
||||||
- rustup: |
|
|
||||||
# We specify --profile minimal because we'd otherwise download docs
|
|
||||||
rustup toolchain install stable --profile minimal -c rustfmt -c clippy
|
|
||||||
rustup default stable
|
|
||||||
- test: |
|
|
||||||
cd ruma-signatures
|
|
||||||
|
|
||||||
# We don't want the build to stop on individual failure of independent
|
|
||||||
# tools, so capture tool exit codes and set the task exit code manually
|
|
||||||
set +e
|
|
||||||
|
|
||||||
cargo fmt -- --check
|
|
||||||
fmt_exit=$?
|
|
||||||
|
|
||||||
cargo clippy --all-targets --all-features -- -D warnings
|
|
||||||
clippy_exit=$?
|
|
||||||
|
|
||||||
cargo test --verbose
|
|
||||||
test_exit=$?
|
|
||||||
|
|
||||||
exit $(( $fmt_exit || $clippy_exit || $test_exit ))
|
|
||||||
# TODO: Add audit task once cargo-audit binary releases are available.
|
|
||||||
# See https://github.com/RustSec/cargo-audit/issues/66
|
|
@ -4,7 +4,7 @@ categories = ["api-bindings", "cryptography"]
|
|||||||
description = "Digital signatures according to the Matrix specification."
|
description = "Digital signatures according to the Matrix specification."
|
||||||
documentation = "https://docs.rs/ruma-signatures"
|
documentation = "https://docs.rs/ruma-signatures"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
homepage = "https://github.com/ruma/ruma-signatures"
|
homepage = "https://www.ruma.io/"
|
||||||
keywords = ["matrix", "chat", "messaging", "ruma", "cryptography"]
|
keywords = ["matrix", "chat", "messaging", "ruma", "cryptography"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "ruma-signatures"
|
name = "ruma-signatures"
|
||||||
|
@ -22,7 +22,7 @@ ruma-common = { version = "0.1.3", path = "../ruma-common" }
|
|||||||
ruma-identifiers = "0.16.2"
|
ruma-identifiers = "0.16.2"
|
||||||
|
|
||||||
ruma-events = { version = "0.21.3", optional = true }
|
ruma-events = { version = "0.21.3", optional = true }
|
||||||
ruma-signatures = { version = "0.5.0", optional = true }
|
ruma-signatures = { version = "0.5.0", path = "../ruma-signatures", optional = true }
|
||||||
|
|
||||||
ruma-api = { version = "0.16.1", optional = true }
|
ruma-api = { version = "0.16.1", optional = true }
|
||||||
ruma-appservice-api = { version = "0.1.0", path = "../ruma-appservice-api", optional = true }
|
ruma-appservice-api = { version = "0.1.0", path = "../ruma-appservice-api", optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user