Fixing travis ci build

- Fixes #39

Travis

Travis

Travis

Travis

Travis

Travis

Travis

Travis

Travis

Travis

Travis
This commit is contained in:
Dessalines 2019-04-06 09:18:50 -07:00
parent 8f7362a80b
commit d5e27a1059
2 changed files with 4 additions and 9 deletions

View file

@ -1,27 +1,22 @@
language: rust language: rust
rust: rust:
- stable - stable
- beta
- nightly
matrix: matrix:
allow_failures: allow_failures:
- rust: nightly - rust: nightly
fast_finish: true fast_finish: true
before_cache:
- cd server
cache: cargo cache: cargo
services:
- postgresql
before_script: before_script:
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres - psql -c "create user rrr with password 'rrr' superuser;" -U postgres
- psql -c 'create database rrr with owner rrr;' -U postgres - psql -c 'create database rrr with owner rrr;' -U postgres
before_install: before_install:
- cd server - cd server
script: script:
- cargo install diesel_cli --no-default-features --features postgres - cargo install --force diesel_cli --no-default-features --features postgres
- cargo build
- diesel migration run - diesel migration run
- cargo build --all - cargo build --all
- cargo test --all - cargo test --all
env: env:
- DATABASE_URL=postgres://rrr:rrr@localhost/rrr - DATABASE_URL=postgres://rrr:rrr@localhost/rrr
addons:
postgresql: "9.4"

View file

@ -5,7 +5,7 @@ create or replace function hot_rank(
returns integer as $$ returns integer as $$
begin begin
-- hours_diff:=EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600 -- hours_diff:=EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600
return 10000*sign(score)*log(1 + abs(score)) / power(((EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600) + 2), 1.8); return floor(10000*sign(score)*log(1 + abs(score)) / power(((EXTRACT(EPOCH FROM (timezone('utc',now()) - published))/3600) + 2), 1.8))::integer;
end; $$ end; $$
LANGUAGE plpgsql; LANGUAGE plpgsql;