Fix cockroach store not respecting WriteTTL option (#1943)

* cockroach fixes for expiry

* cockroach should run in the background
This commit is contained in:
Dominic Wong
2020-08-18 18:30:05 +01:00
committed by GitHub
parent 2b2dc2f811
commit 2eac8ed64f
3 changed files with 49 additions and 10 deletions

View File

@@ -25,7 +25,10 @@ jobs:
id: tests
env:
IN_TRAVIS_CI: yes
run: go test -v ./...
run: |
wget -qO- https://binaries.cockroachdb.com/cockroach-v20.1.4.linux-amd64.tgz | tar xvz
cockroach-v20.1.4.linux-amd64/cockroach start-single-node --insecure &
go test -v ./...
- name: Notify of test failure
if: failure()