https://github.com/autocrypt/autocrypt
Raw File
Tip revision: d118557456c64663b51842bfdc7ec16ab7d1ba3a authored by Martin Monperrus on 29 August 2022, 05:31:32 UTC
doc: add link to Github issue
Tip revision: d118557
.travis.yml
sudo: required
language: python
dist: trusty
python:
    - '3.5'

env:
  - DEPLOY_USER=autocrypt DEPLOY_SERVER="autocrypt.org"

addons:
  apt:
    packages:
    - texlive-latex-recommended
    - texlive-fonts-recommended
    - texlive-latex-extra
    - latexmk
    - inkscape
    - imagemagick

install:
  - pip install sphinx
  - pip install gitpython

script:
  - cd doc
  - make html
  - make latexpdf
  - cd ..

deploy:
  provider: script
  skip_cleanup: true
  script: .scripts/deploy.sh
  on:
    all_branches: true


#notifications:
#  irc:
#    channels:
#      - "chat.freenode.net#autocrypt"
#    on_success: change
#    on_failure: change
#    skip_join: true
#  email:
#    - pytest-commit@python.org
back to top