Skip to content

Commit b69d505

Browse files
committed
Merge remote-tracking branch 'upstream/master' into search
2 parents 3f19187 + e19275d commit b69d505

File tree

131 files changed

+5597
-2420
lines changed

Some content is hidden

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

131 files changed

+5597
-2420
lines changed

.buildpacks

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
https://github.com/Starkast/heroku-buildpack-cmake#a243c67
21
https://github.com/emk/heroku-buildpack-rust#578d630
32
https://codon-buildpacks.s3.amazonaws.com/buildpacks/heroku/emberjs.tgz
4-
https://github.com/travis-ci/nginx-buildpack.git#2fbde35
3+
https://github.com/heroku/heroku-buildpack-nginx.git#fbc49cd
54
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

.eslintignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# unconventional js
2+
/blueprints/*/files/
3+
/vendor/
4+
5+
# compiled output
6+
/dist/
7+
/tmp/
8+
9+
# dependencies
10+
/bower_components/
11+
/node_modules/
12+
13+
# misc
14+
/coverage/
15+
!.*
16+
17+
# ember-try
18+
/.node_modules.ember-try/
19+
/bower.json.ember-try
20+
/package.json.ember-try

.eslintrc.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ module.exports = {
2525
overrides: [
2626
// node files
2727
{
28-
files: ['testem.js', 'ember-cli-build.js', 'config/**/*.js', 'lib/*/index.js'],
28+
files: [
29+
'.eslintrc.js',
30+
'.template-lintrc.js',
31+
'ember-cli-build.js',
32+
'testem.js',
33+
'blueprints/*/index.js',
34+
'config/**/*.js',
35+
'lib/*/index.js',
36+
'server/**/*.js',
37+
],
2938
parserOptions: {
3039
sourceType: 'script',
3140
ecmaVersion: 2015,

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/bower_components
1212

1313
# misc
14+
/.eslintcache
1415
/.sass-cache
1516
/connect.lock
1617
/coverage/*

.travis.yml

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: rust
22
sudo: required
3-
dist: trusty
3+
dist: xenial
44

55
# Ignore this branch per bors-ng documentation
66
branches:
@@ -24,41 +24,48 @@ env:
2424
# on community-submitted PRs
2525
- PERCY_TOKEN=0d8707a02b19aebbec79bb0bf302b8d2fa95edb33169cfe41b084289596670b1
2626
- PERCY_PROJECT=crates-io/crates.io
27+
- PGPORT=5433
2728

2829
install:
30+
- sudo cp /etc/postgresql/10/main/pg_hba.conf /etc/postgresql/11/main/pg_hba.conf
31+
- sudo systemctl restart postgresql@11-main
2932
- script/ci/cargo-clean-on-new-rustc-version.sh
3033
- cargo install --force diesel_cli --vers `cat .diesel_version` --no-default-features --features postgres && export PATH=$HOME/.cargo/bin:$PATH
3134

3235
before_script:
33-
- diesel database setup
36+
- diesel database setup --locked-schema
3437

3538
addons:
3639
chrome: stable
37-
postgresql: "9.5"
40+
postgresql: "11"
3841
apt:
39-
sources:
40-
- kalakris-cmake
4142
packages:
42-
- cmake
43-
- libcurl4-openssl-dev
44-
- libelf-dev
45-
- libdw-dev
43+
- postgresql-11
44+
- postgresql-client-11
4645

4746
matrix:
4847
fast_finish: true
4948
allow_failures:
5049
- rust: nightly
5150
include:
52-
- rust: stable
51+
- name: Backend
52+
rust: stable
5353
before_install:
54-
- nvm install 10
55-
- npm ci
5654
- rustup component add rustfmt-preview
5755
- rustup component add clippy-preview
5856
script:
5957
- cargo fmt -- --check
6058
- cargo clippy --all-targets --all-features --all
6159
- cargo test
60+
- name: Frontend
61+
language: node_js
62+
node_js: 10
63+
install:
64+
- npm ci
65+
before_script: skip
66+
script:
67+
- npm run lint:js
68+
- npm run lint:deps
6269
- npm test
6370
- rust: beta
6471
script:

0 commit comments

Comments
 (0)