diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-25 17:13:05 -0700 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-25 17:13:05 -0700 | 
| commit | ca5dad8c6b9983c8e417310deac03173f815fa86 (patch) | |
| tree | 31b821d37f5577a6fa9ecdd02cb558611b3b4c0d | |
| parent | d621b952c179ea7f6937de48d63adcf17c2ee1e8 (diff) | |
| download | fatcat-ca5dad8c6b9983c8e417310deac03173f815fa86.tar.gz fatcat-ca5dad8c6b9983c8e417310deac03173f815fa86.zip | |
try to fix gitlab-ci
| -rw-r--r-- | .gitlab-ci.yml | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d89e2b56..62575c4f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,11 @@  rust_test:    image: "rust:1.26-stretch"    variables: -    TEST_DATABASE_URL: "postgres://postgres@localhost/fatcat_test" +    POSTGRES_DB: "fatcat_test" +    POSTGRES_USER: "fatcat_user" +    POSTGRES_PASSWORD: "fatcat_pw" +    DATABASE_URL: "postgres://fatcat_user:fatcat_pw:@localhost/fatcat_test" +    TEST_DATABASE_URL: "postgres://fatcat_user:fatcat_pw:@localhost/fatcat_test"    services:      - "postgres:9.6"    before_script: | 
