Files
searxng/.travis.yml
T

56 lines
1.1 KiB
YAML
Raw Normal View History

os: linux
dist: bionic
2019-06-29 11:59:13 +02:00
language: python
2020-04-01 15:22:24 +02:00
cache:
- directories:
- $HOME/.cache/pip
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-02 18:00:53 +02:00
- env
- which python; python --version
2020-04-01 11:15:34 +02:00
- make V=1 install
- make V=1 gecko.driver
- make V=1 node.env
- make V=1 travis.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: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
2019-06-29 11:59:13 +02:00
- stage: docker
python: "3.8"
2019-06-29 11:59:13 +02: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 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