mirror of
https://old.git.ood.ovh/nehu/tokio-messaging.git
synced 2025-04-28 19:38:06 +02:00
12 lines
395 B
YAML
12 lines
395 B
YAML
pipeline:
|
|
tokio-messaging:
|
|
image: "rust:alpine"
|
|
commands:
|
|
# Required to avoid the crti.o error (https://github.com/rust-lang/rust/issues/40174)
|
|
- apk add --no-cache musl-dev
|
|
# Fetch faster
|
|
- mkdir -p ~/.cargo && echo -e '[registries.crates-io]\nprotocol = "sparse"' > ~/.cargo/config.toml
|
|
|
|
- cargo check
|
|
- cargo build
|
|
- cargo test --workspace
|