2020-04-01 10:22:08 +00:00
|
|
|
os: linux
|
|
|
|
dist: bionic
|
2019-06-29 09:59:13 +00:00
|
|
|
language: python
|
2020-04-01 13:22:24 +00:00
|
|
|
cache:
|
|
|
|
- directories:
|
|
|
|
- $HOME/.cache/pip
|
2016-10-22 00:32:36 +00:00
|
|
|
addons:
|
|
|
|
firefox: "latest"
|
2019-06-29 09:59:13 +00:00
|
|
|
|
2017-12-10 09:30:45 +00:00
|
|
|
install:
|
2020-04-02 16:00:53 +00:00
|
|
|
- env
|
|
|
|
- which python; python --version
|
2020-04-01 09:15:34 +00:00
|
|
|
- make V=1 install
|
|
|
|
- make V=1 gecko.driver
|
|
|
|
- make V=1 node.env
|
2020-04-01 13:45:01 +00:00
|
|
|
- make V=1 travis.codecov
|
2014-01-25 17:07:57 +00:00
|
|
|
script:
|
2020-04-01 09:15:34 +00:00
|
|
|
- make V=1 themes
|
|
|
|
- make V=1 test
|
2014-07-08 22:06:36 +00:00
|
|
|
after_success:
|
2020-04-01 09:15:34 +00:00
|
|
|
- make V=1 test.coverage
|
2017-09-13 20:58:52 +00:00
|
|
|
- codecov
|
2019-06-29 09:59:13 +00:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- name: docker
|
|
|
|
if: branch = master AND type != pull_request AND env(DOCKER_USERNAME) IS present
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
include:
|
2020-04-01 15:21:26 +00:00
|
|
|
- python: "2.7"
|
|
|
|
env: PY=2
|
2019-06-29 09:59:13 +00:00
|
|
|
- python: "3.5"
|
|
|
|
- python: "3.6"
|
2020-04-08 13:34:01 +00:00
|
|
|
- python: "3.7"
|
|
|
|
- python: "3.8"
|
2019-06-29 09:59:13 +00:00
|
|
|
- stage: docker
|
2020-04-08 13:34:01 +00:00
|
|
|
python: "3.8"
|
2019-06-29 09:59:13 +00:00
|
|
|
git:
|
|
|
|
depth: false
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
addons: []
|
|
|
|
before_install: true
|
|
|
|
install: true
|
|
|
|
script:
|
|
|
|
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
2020-03-31 09:59:54 +00:00
|
|
|
- make -e GIT_URL=$(git remote get-url origin) docker.push
|
2019-06-29 09:59:13 +00:00
|
|
|
after_success: true
|
|
|
|
|
2014-01-25 17:07:57 +00:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#searx"
|
|
|
|
template:
|
|
|
|
- "%{repository}/#%{build_number}/%{branch} (%{author}): %{message} %{build_url}"
|
2014-01-30 13:46:51 +00:00
|
|
|
on_success: change
|