mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-03 01:29:16 +02:00
27 lines
491 B
YAML
27 lines
491 B
YAML
# Configuration for Travis CI
|
|
language: rust
|
|
sudo: false
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
rust: stable
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libssl-dev
|
|
|
|
# Main build
|
|
script:
|
|
# Default features configuration
|
|
- cargo build --verbose --all
|
|
|
|
# Other feature combinations
|
|
- cargo build --package ffsend --no-default-features --verbose --all
|
|
- cargo build --package ffsend --features no-color --verbose --all
|
|
|
|
# Tests
|
|
- cargo test --verbose --all
|