Files
searxng/.travis.yml
T

53 lines
1.1 KiB
YAML
Raw Normal View History

2019-06-29 11:59:13 +02:00
language: python
sudo: false
cache:
2015-09-01 20:03:32 +02:00
- directories:
2015-09-01 20:02:08 +02:00
- $HOME/.cache/pip
2019-06-29 11:59:13 +02:00
2016-10-22 02:32:36 +02:00
addons:
firefox: "latest"
2019-06-29 11:59:13 +02:00
2017-12-10 10:30:45 +01:00
install:
2020-04-01 11:15:34 +02:00
- make V=1 install
- make V=1 gecko.driver
- make V=1 node.env
2020-03-26 19:14:07 +01:00
- local/py3/bin/pip install codecov
2014-01-25 18:07:57 +01:00
script:
2020-04-01 11:15:34 +02:00
- make V=1 themes
- make V=1 test
2014-07-09 00:06:36 +02:00
after_success:
2020-04-01 11:15:34 +02:00
- make V=1 test.coverage
2017-09-13 22:58:52 +02:00
- codecov
2019-06-29 11:59:13 +02:00
stages:
- test
- name: docker
if: branch = master AND type != pull_request AND env(DOCKER_USERNAME) IS present
jobs:
include:
- python: "2.7"
- python: "3.5"
- python: "3.6"
- stage: docker
python: "3.6"
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 11:59:54 +02:00
- make -e GIT_URL=$(git remote get-url origin) docker.push
2019-06-29 11:59:13 +02:00
after_success: true
2014-01-25 18:07:57 +01:00
notifications:
irc:
channels:
- "irc.freenode.org#searx"
template:
- "%{repository}/#%{build_number}/%{branch} (%{author}): %{message} %{build_url}"
2014-01-30 14:46:51 +01:00
on_success: change