Skip to content

Commit 8a8a1d3

Browse files
committed
fix upstream conflicts
2 parents 59f7169 + 4a1542c commit 8a8a1d3

File tree

104 files changed

+2397
-1041
lines changed

Some content is hidden

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

104 files changed

+2397
-1041
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,21 @@ env:
1313
- JOBS=1 # See https://git.io/vdao3 for details.
1414
- DATABASE_URL=postgres://postgres:@localhost/cargo_registry_test
1515
- TEST_DATABASE_URL=postgres://postgres:@localhost/cargo_registry_test
16-
- CARGO_TARGET_DIR=target
16+
- CARGO_INCREMENTAL=0
1717
- PERCY_PARALLEL_TOTAL=2
1818
# Percy secrets are included here to enable Percy's GitHub integration
1919
# on community-submitted PRs
2020
- PERCY_TOKEN=0d8707a02b19aebbec79bb0bf302b8d2fa95edb33169cfe41b084289596670b1
2121
- PERCY_PROJECT=crates-io/crates.io
2222
- PGPORT=5433
23+
- PATH=$HOME/.cargo/bin:$PATH
24+
- RUSTFLAGS="-C debuginfo=0"
2325

2426
install:
2527
- sudo cp /etc/postgresql/10/main/pg_hba.conf /etc/postgresql/11/main/pg_hba.conf
2628
- sudo systemctl restart postgresql@11-main
2729
- script/ci/cargo-clean-on-new-rustc-version.sh
28-
- cargo install --force diesel_cli --vers `cat .diesel_version` --no-default-features --features postgres && export PATH=$HOME/.cargo/bin:$PATH
30+
- which diesel || cargo install diesel_cli --vers `cat .diesel_version` --no-default-features --features postgres
2931

3032
before_script:
3133
- diesel database setup --locked-schema

0 commit comments

Comments
 (0)