Skip to content

Commit 190c4ca

Browse files
committed
Merge remote-tracking branch 'upstream/master' into allow-multiple-keywords-in-search
2 parents 4a1a608 + 1aa4b1d commit 190c4ca

File tree

121 files changed

+3885
-4227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+3885
-4227
lines changed

.buildpacks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
https://github.com/Starkast/heroku-buildpack-cmake#a243c67
22
https://github.com/emk/heroku-buildpack-rust#578d630
33
https://codon-buildpacks.s3.amazonaws.com/buildpacks/heroku/emberjs.tgz
4-
https://github.com/travis-ci/nginx-buildpack.git#2fbde35
4+
https://github.com/heroku/heroku-buildpack-nginx.git#fbc49cd
55
https://github.com/sgrif/heroku-buildpack-diesel#f605edd

.diesel_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.4.0

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ testem.log
2323
.env
2424
docker-compose.override.yml
2525
*~
26+
src/schema.rs.orig
2627

.travis.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ cache:
1111
cargo: true
1212
directories:
1313
- $HOME/.npm
14+
before_cache: script/ci/prune-cache.sh
1415

1516
env:
1617
global:
@@ -25,10 +26,11 @@ env:
2526
- PERCY_PROJECT=crates-io/crates.io
2627

2728
install:
29+
- script/ci/cargo-clean-on-new-rustc-version.sh
2830
- cargo install --force diesel_cli --vers `cat .diesel_version` --no-default-features --features postgres && export PATH=$HOME/.cargo/bin:$PATH
2931

3032
before_script:
31-
- diesel database setup
33+
- diesel database setup --locked-schema
3234

3335
addons:
3436
chrome: stable
@@ -50,27 +52,20 @@ matrix:
5052
- rust: stable
5153
before_install:
5254
- nvm install 10
55+
- npm ci
5356
- rustup component add rustfmt-preview
5457
- rustup component add clippy-preview
5558
script:
5659
- cargo fmt -- --check
57-
# TODO: Once clippy:: lint syntax is stable, remove everything after the -- below
58-
- cargo clippy --all-targets -- -A renamed_and_removed_lints
59-
- cargo build
60+
- cargo clippy --all-targets --all-features --all
6061
- cargo test
61-
- npm install
6262
- npm test
6363
- rust: beta
6464
script:
65-
- cargo build
6665
- cargo test
6766
- rust: nightly
6867
script:
69-
- cargo build
7068
- cargo test
71-
# This portion of the cache is quickly invalidated anyway
72-
before_cache:
73-
- cargo clean
7469

7570
notifications:
7671
email:

0 commit comments

Comments
 (0)