* extend post info with ts and add info implemenation to engine * info controller * remove unused * docker froendly new test * tree find to include post info struct * remove leftovers from codeconv * test for empty tree request * add func name to error rest report * test with disabled proxy * add read only age and reject updates on old posts * lint: shaddow err * make info calls fast. needs migration! * fix backup restore script * increase limiter timeout * add local exporter * migrate list to new info * fix rest list tests * add manual backup script * default backup path * fix eait on sec change failing rss tests * add RO status bucket and rest * add admin RO controller test
20 lines
667 B
YAML
20 lines
667 B
YAML
install:
|
|
- docker --version
|
|
- docker-compose --version
|
|
|
|
script:
|
|
- docker build
|
|
--build-arg COVERALLS_TOKEN=$COVERALLS_TOKEN
|
|
--build-arg CI=$CI
|
|
--build-arg TRAVIS=$TRAVIS
|
|
--build-arg TRAVIS_BRANCH=$TRAVIS_BRANCH
|
|
--build-arg TRAVIS_COMMIT=$TRAVIS_COMMIT
|
|
--build-arg TRAVIS_JOB_ID=$TRAVIS_JOB_ID
|
|
--build-arg TRAVIS_JOB_NUMBER=$TRAVIS_JOB_NUMBER
|
|
--build-arg TRAVIS_OS_NAME=$TRAVIS_OS_NAME
|
|
--build-arg TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST
|
|
--build-arg TRAVIS_PULL_REQUEST_SHA=$TRAVIS_PULL_REQUEST_SHA
|
|
--build-arg TRAVIS_REPO_SLUG=$TRAVIS_REPO_SLUG
|
|
--build-arg TRAVIS_TAG=$TRAVIS_TAG
|
|
.
|