mirror of
https://github.com/lsd-rs/lsd
synced 2024-11-14 16:17:19 +00:00
118 lines
3.7 KiB
YAML
118 lines
3.7 KiB
YAML
language: rust
|
|
cache: cargo
|
|
|
|
matrix:
|
|
allow_failures:
|
|
include:
|
|
# Stable channel.
|
|
- os: linux
|
|
rust: stable
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
- os: linux
|
|
rust: stable
|
|
env: TARGET=i686-unknown-linux-gnu
|
|
- os: linux
|
|
rust: stable
|
|
env: TARGET=x86_64-unknown-linux-musl
|
|
- os: linux
|
|
rust: stable
|
|
env: TARGET=i686-unknown-linux-musl
|
|
- os: osx
|
|
rust: stable
|
|
env: TARGET=x86_64-apple-darwin
|
|
- os: linux
|
|
rust: stable
|
|
env:
|
|
- TARGET=arm-unknown-linux-gnueabihf
|
|
- CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc-4.8
|
|
|
|
# Beta channel.
|
|
# The other platforms are disabled in order to reduce the total CI time
|
|
- os: linux
|
|
rust: beta
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
|
|
# Nightly channel.
|
|
# The other platforms are disabled in order to reduce the total CI time
|
|
- os: linux
|
|
rust: nightly
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
|
|
# Minimum Rust supported channel.
|
|
- os: linux
|
|
rust: 1.43.1
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
- os: linux
|
|
rust: 1.43.1
|
|
env: TARGET=i686-unknown-linux-gnu
|
|
- os: osx
|
|
rust: 1.43.1
|
|
env: TARGET=x86_64-apple-darwin
|
|
- os: linux
|
|
rust: 1.43.1
|
|
env:
|
|
- TARGET=arm-unknown-linux-gnueabihf
|
|
- CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc-4.8
|
|
|
|
# Code formatting check
|
|
- os: linux
|
|
rust: stable
|
|
# skip the global install step
|
|
install:
|
|
- rustup component add clippy
|
|
script:
|
|
- cargo clippy --all-features
|
|
|
|
env:
|
|
global:
|
|
# Default target on travis-ci.
|
|
# Used as conditional check in the install stage
|
|
- HOST=x86_64-unknown-linux-gnu
|
|
# Used on the deployment script
|
|
- PROJECT_NAME=lsd
|
|
|
|
install:
|
|
# prevent target re-add error from rustup
|
|
- if [[ $TRAVIS_OS_NAME = linux && $HOST != $TARGET ]]; then rustup target add $TARGET; fi
|
|
|
|
script:
|
|
- bash ci/script.bash
|
|
|
|
before_install:
|
|
- bash ci/before_install.bash
|
|
|
|
before_deploy:
|
|
- bash ci/before_deploy.bash
|
|
|
|
deploy:
|
|
provider: releases
|
|
# NOTE updating the `api_key.secure`
|
|
# - go to: https://github.com/settings/tokens/new
|
|
# - generate new token using `public_repo` scope
|
|
# - encrypt it using: `travis encrypt --org API_KEY_HERE`
|
|
# - paste the output below
|
|
api_key:
|
|
secure: "UwCwgVFYe5jALDxZL9d9VQFnCV/1BTpGwwWXS5fOC17OkGD277RIhgMChzJXmHALBJ7o2Jm7ZUxYViEp3/Mk8NlzvMi7sM3wkGaAF0/aAiqsYcxbSyP74j8htjaEDOO99JR9Wp3l74Y52daO4eqlSy3+ZeXIoPVSI9JJlNC1Mhs6bcUvzwCTaCUIU3wc1y9ST4RJizKkSBbtE+OH9CERYZoa1vmDvfAE9BidTu1Fx4kQo0TMpBeFA7+/KAk9BORvGE/97CJ8SdT53oNBozcYluv61pDRcn+Ek6AR7Kh3Z/HJvP6ZWquMygh1G7bVcYZPrSqqB3nTN8t08UZhWMw7QIzqZXd9YuK2WRKVLJaLfbHjm+tkmnaDZpi1OJMMevvdGPuSRTk2rJ/40dAG10sVWd4Ryq9ysLXfsQ2rpqCQdewnrutj9e2X3obO1YDCJzNiONKq+RNiibKWcMf0Rn0B/jFPDdZmPlkJ4M+CVl4mR3vaDMBlPzQkvXmtkWvqkdPn9xrr0CiuItZqEuHcFKtt1mo7MPsgz8FiZ3SzeQ0lYwW5XCsNCEiPWy9l1S/YFNTzpvSyyN3Wtliem5qoCmYVMi3c0mzLGVgTGnO6M1AGme4vD0dptnbov27utWd6sp8PCrxIG4itQxnbTsEYoDQ3EYUBQZX/I3EC0E9fFsmOhzA="
|
|
# for uploading multiple files
|
|
file_glob: true
|
|
# NOTE explanation on each env variable
|
|
# - PROJECT_NAME: name of the project, set on the `env.global` above
|
|
# - TRAVIS_TAG: tag name that the build is being deployed for, usually the version number
|
|
# - TARGET: target triple of the build
|
|
file:
|
|
- $PROJECT_NAME-$TRAVIS_TAG-$TARGET.*
|
|
- $PROJECT_NAME*.deb
|
|
# don't delete artifacts from previous stage
|
|
cleanup: false
|
|
on:
|
|
# deploy only if we push a tag
|
|
tags: true
|
|
# deploy only on stable channel that has TARGET env variable sets
|
|
condition: $TRAVIS_RUST_VERSION = stable && $TARGET != ""
|
|
repo: Peltoche/lsd
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
|
|
|