mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-09 14:30:37 +00:00
(cargo-release) version 0.8.5
This commit is contained in:
parent
8ba594170f
commit
e74e4c3315
198
.travis.yml
198
.travis.yml
@ -1,110 +1,110 @@
|
|||||||
language: rust
|
language: rust
|
||||||
dist: xenial
|
dist: xenial
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- PROJECT_NAME: ripgrep_all
|
- PROJECT_NAME: ripgrep_all
|
||||||
- RUST_BACKTRACE: full
|
- RUST_BACKTRACE: full
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
# For generating man page.
|
# For generating man page.
|
||||||
- libxslt1-dev
|
- libxslt1-dev
|
||||||
- asciidoc
|
- asciidoc
|
||||||
- docbook-xsl
|
- docbook-xsl
|
||||||
- xsltproc
|
- xsltproc
|
||||||
- libxml2-utils
|
- libxml2-utils
|
||||||
# Needed for completion-function test.
|
# Needed for completion-function test.
|
||||||
- zsh
|
- zsh
|
||||||
# Needed for testing decompression search.
|
# Needed for testing decompression search.
|
||||||
- xz-utils
|
- xz-utils
|
||||||
- liblz4-tool
|
- liblz4-tool
|
||||||
# For building MUSL static builds on Linux.
|
# For building MUSL static builds on Linux.
|
||||||
- musl-tools
|
- musl-tools
|
||||||
# rga specific
|
# rga specific
|
||||||
- pandoc
|
- pandoc
|
||||||
- poppler-utils
|
- poppler-utils
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
include:
|
include:
|
||||||
# Nightly channel.
|
# Nightly channel.
|
||||||
# All *nix releases are done on the nightly channel to take advantage
|
# All *nix releases are done on the nightly channel to take advantage
|
||||||
# of the regex library's multiple pattern SIMD search.
|
# of the regex library's multiple pattern SIMD search.
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: nightly
|
rust: nightly
|
||||||
env: TARGET=x86_64-unknown-linux-musl
|
env: TARGET=x86_64-unknown-linux-musl
|
||||||
- os: osx
|
- os: osx
|
||||||
rust: nightly
|
rust: nightly
|
||||||
# XML_CATALOG_FILES is apparently necessary for asciidoc on macOS.
|
# XML_CATALOG_FILES is apparently necessary for asciidoc on macOS.
|
||||||
env: TARGET=x86_64-apple-darwin XML_CATALOG_FILES=/usr/local/etc/xml/catalog
|
env: TARGET=x86_64-apple-darwin XML_CATALOG_FILES=/usr/local/etc/xml/catalog
|
||||||
#- os: linux
|
#- os: linux
|
||||||
# rust: nightly
|
# rust: nightly
|
||||||
# env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
|
# env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
|
||||||
# addons:
|
# addons:
|
||||||
# apt:
|
# apt:
|
||||||
# packages:
|
# packages:
|
||||||
# - gcc-4.8-arm-linux-gnueabihf
|
# - gcc-4.8-arm-linux-gnueabihf
|
||||||
# - binutils-arm-linux-gnueabihf
|
# - binutils-arm-linux-gnueabihf
|
||||||
# - libc6-armhf-cross
|
# - libc6-armhf-cross
|
||||||
# - libc6-dev-armhf-cross
|
# - libc6-dev-armhf-cross
|
||||||
# # For generating man page.
|
# # For generating man page.
|
||||||
# - libxslt1-dev
|
# - libxslt1-dev
|
||||||
# - asciidoc
|
# - asciidoc
|
||||||
# - docbook-xsl
|
# - docbook-xsl
|
||||||
# - xsltproc
|
# - xsltproc
|
||||||
# - libxml2-utils
|
# - libxml2-utils
|
||||||
# Beta channel. We enable these to make sure there are no regressions in
|
# Beta channel. We enable these to make sure there are no regressions in
|
||||||
# Rust beta releases.
|
# Rust beta releases.
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: beta
|
rust: beta
|
||||||
env: TARGET=x86_64-unknown-linux-musl
|
env: TARGET=x86_64-unknown-linux-musl
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: beta
|
rust: beta
|
||||||
env: TARGET=x86_64-unknown-linux-gnu
|
env: TARGET=x86_64-unknown-linux-gnu
|
||||||
# Minimum Rust supported channel. We enable these to make sure ripgrep
|
# Minimum Rust supported channel. We enable these to make sure ripgrep
|
||||||
# continues to work on the advertised minimum Rust version.
|
# continues to work on the advertised minimum Rust version.
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: 1.35.0
|
rust: 1.35.0
|
||||||
env: TARGET=x86_64-unknown-linux-gnu
|
env: TARGET=x86_64-unknown-linux-gnu
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: 1.35.0
|
rust: 1.35.0
|
||||||
env: TARGET=x86_64-unknown-linux-musl
|
env: TARGET=x86_64-unknown-linux-musl
|
||||||
#- os: linux
|
#- os: linux
|
||||||
# rust: 1.35.0
|
# rust: 1.35.0
|
||||||
# env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
|
# env: TARGET=arm-unknown-linux-gnueabihf GCC_VERSION=4.8
|
||||||
# addons:
|
# addons:
|
||||||
# apt:
|
# apt:
|
||||||
# packages:
|
# packages:
|
||||||
# - gcc-4.8-arm-linux-gnueabihf
|
# - gcc-4.8-arm-linux-gnueabihf
|
||||||
# - binutils-arm-linux-gnueabihf
|
# - binutils-arm-linux-gnueabihf
|
||||||
# - libc6-armhf-cross
|
# - libc6-armhf-cross
|
||||||
# - libc6-dev-armhf-cross
|
# - libc6-dev-armhf-cross
|
||||||
# # For generating man page.
|
# # For generating man page.
|
||||||
# - libxslt1-dev
|
# - libxslt1-dev
|
||||||
# - asciidoc
|
# - asciidoc
|
||||||
# - docbook-xsl
|
# - docbook-xsl
|
||||||
# - xsltproc
|
# - xsltproc
|
||||||
# - libxml2-utils
|
# - libxml2-utils
|
||||||
install: ci/install.sh
|
install: ci/install.sh
|
||||||
script: ci/script.sh
|
script: ci/script.sh
|
||||||
before_deploy: ci/before_deploy.sh
|
before_deploy: ci/before_deploy.sh
|
||||||
deploy:
|
deploy:
|
||||||
provider: releases
|
provider: releases
|
||||||
file_glob: true
|
file_glob: true
|
||||||
file: deployment/${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}.tar.gz
|
file: deployment/${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}.tar.gz
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
on:
|
on:
|
||||||
condition: $TRAVIS_RUST_VERSION = nightly
|
condition: $TRAVIS_RUST_VERSION = nightly
|
||||||
branch: master # i guess we do need this after all?
|
branch: master # i guess we do need this after all?
|
||||||
tags: true
|
tags: true
|
||||||
#api_key:
|
api_key:
|
||||||
# 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="
|
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="
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
# Pushes and PR to the master branch
|
# Pushes and PR to the master branch
|
||||||
- master
|
- master
|
||||||
# Ruby regex to match tags. Required, or travis won't trigger deploys when
|
# Ruby regex to match tags. Required, or travis won't trigger deploys when
|
||||||
# a new tag is pushed.
|
# a new tag is pushed.
|
||||||
- /^\d+\.\d+\.\d+.*$/
|
- /^\d+\.\d+\.\d+.*$/
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: never
|
on_success: never
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -918,7 +918,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ripgrep_all"
|
name = "ripgrep_all"
|
||||||
version = "0.8.5-alpha.0"
|
version = "0.8.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
name = "ripgrep_all"
|
name = "ripgrep_all"
|
||||||
description = "ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc"
|
description = "ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc"
|
||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
version = "0.8.5-alpha.0"
|
version = "0.8.5"
|
||||||
repository = "https://github.com/phiresky/ripgrep_all"
|
repository = "https://github.com/phiresky/ripgrep_all"
|
||||||
authors = ["phiresky <phireskyde+git@gmail.com>"]
|
authors = ["phiresky <phireskyde+git@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
Loading…
Reference in New Issue
Block a user