1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00
ripgrep/.travis.yml

104 lines
3.1 KiB
YAML
Raw Normal View History

2016-02-27 18:07:26 +02:00
language: rust
2017-12-19 01:04:49 +02:00
cache: cargo
2016-09-06 02:08:46 +02:00
env:
global:
2016-09-09 03:47:49 +02:00
- PROJECT_NAME=ripgrep
- RUST_BACKTRACE: full
2017-07-26 14:59:44 +02:00
addons:
apt:
packages:
# Needed for completion-function test
- zsh
2016-09-06 02:08:46 +02:00
matrix:
2017-12-19 01:04:49 +02:00
fast_finish: true
2016-09-06 02:08:46 +02:00
include:
2016-09-10 00:07:30 +02:00
# Nightly channel.
# (All *nix releases are done on the nightly channel to take advantage
# of the regex library's multiple pattern SIMD search.)
- os: linux
rust: nightly
2016-09-10 00:07:30 +02:00
env: TARGET=i686-unknown-linux-musl
- os: linux
rust: nightly
2016-09-10 00:07:30 +02:00
env: TARGET=x86_64-unknown-linux-musl
2016-09-06 02:08:46 +02:00
- os: osx
rust: nightly
2016-09-06 02:08:46 +02:00
env: TARGET=x86_64-apple-darwin
- os: linux
rust: nightly
env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
addons:
apt:
packages:
- gcc-4.8-arm-linux-gnueabihf
- binutils-arm-linux-gnueabihf
- libc6-armhf-cross
- libc6-dev-armhf-cross
2016-09-10 00:07:30 +02:00
# Beta channel.
2016-09-06 02:08:46 +02:00
- os: linux
2016-09-10 00:07:30 +02:00
rust: beta
env: TARGET=x86_64-unknown-linux-musl
2016-09-10 05:19:37 +02:00
- os: linux
rust: beta
env: TARGET=x86_64-unknown-linux-gnu
2016-09-10 00:07:30 +02:00
# Minimum Rust supported channel.
2016-09-06 02:08:46 +02:00
- os: linux
rust: 1.20.0
2016-09-10 05:19:37 +02:00
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
rust: 1.20.0
env: TARGET=x86_64-unknown-linux-musl
- os: linux
rust: 1.20.0
env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
addons:
apt:
packages:
- gcc-4.8-arm-linux-gnueabihf
- binutils-arm-linux-gnueabihf
- libc6-armhf-cross
- libc6-dev-armhf-cross
2016-09-06 02:08:46 +02:00
before_install:
- export PATH="$PATH:$HOME/.cargo/bin"
install:
- bash ci/install.sh
2016-02-27 18:07:26 +02:00
script:
2016-09-06 02:08:46 +02:00
- bash ci/script.sh
before_deploy:
- bash ci/before_deploy.sh
deploy:
provider: releases
api_key:
2016-09-06 02:39:10 +02:00
secure: "IbSnsbGkxSydR/sozOf1/SRvHplzwRUHzcTjM7BKnr7GccL86gRPUrsrvD103KjQUGWIc1TnK1YTq5M0Onswg/ORDjqa1JEJPkPdPnVh9ipbF7M2De/7IlB4X4qXLKoApn8+bx2x/mfYXu4G+G1/2QdbaKK2yfXZKyjz0YFx+6CNrVCT2Nk8q7aHvOOzAL58vsG8iPDpupuhxlMDDn/UhyOWVInmPPQ0iJR1ZUJN8xJwXvKvBbfp3AhaBiAzkhXHNLgBR8QC5noWWMXnuVDMY3k4f3ic0V+p/qGUCN/nhptuceLxKFicMCYObSZeUzE5RAI0/OBW7l3z2iCoc+TbAnn+JrX/ObJCfzgAOXAU3tLaBFMiqQPGFKjKg1ltSYXomOFP/F7zALjpvFp4lYTBajRR+O3dqaxA9UQuRjw27vOeUpMcga4ZzL4VXFHzrxZKBHN//XIGjYAVhJ1NSSeGpeJV5/+jYzzWKfwSagRxQyVCzMooYFFXzn8Yxdm3PJlmp3GaAogNkdB9qKcrEvRINCelalzALPi0hD/HUDi8DD2PNTCLLMo6VSYtvc685Zbe+KgNzDV1YyTrRCUW6JotrS0r2ULLwnsh40hSB//nNv3XmwNmC/CmW5QAnIGj8cBMF4S2t6ohADIndojdAfNiptmaZOIT6owK7bWMgPMyopo="
2016-09-06 02:08:46 +02:00
file_glob: true
file: ${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}.*
# don't delete the artifacts from previous phases
skip_cleanup: true
# deploy when a new tag is pushed
on:
# channel to use to produce the release artifacts
# NOTE make sure you only release *once* per target
# TODO you may want to pick a different channel
2017-08-24 02:05:23 +02:00
condition: $TRAVIS_RUST_VERSION = nightly
2016-09-06 02:08:46 +02:00
tags: true
branches:
only:
# Pushes and PR to the master branch
- master
# IMPORTANT Ruby regex to match tags. Required, or travis won't trigger deploys when a new tag
# is pushed. This regex matches semantic versions like v1.2.3-rc4+2016.02.22
- /^\d+\.\d+\.\d+.*$/
notifications:
email:
on_success: never