-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (34 loc) · 1.17 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
sudo: false
branches:
only:
- master
language: php
php:
- '7.1'
before_install:
# Disable XDebug to speed up PHP scripts
- phpenv config-rm xdebug.ini
# Configure GitHub connection
- git config --global user.email '[email protected]'
- git config --global user.name 'Damien Flament'
- git config --global push.default simple
- echo -e "machine github.com\n login $GH_TOKEN" >> ~/.netrc
install:
# Get source code to document
- git clone https://github.com/sebastianbergmann/phpunit-mock-objects.git phpunit-mock-objects
# Get documentation branch and clean it
- git clone --branch=gh-pages https://github.com/damienflament/phpunit-mock-objects-api-docs.git gh-pages
- rm -Rf gh-pages/*
# Install documentation generation dependencies
- composer install --prefer-dist
before_script:
- vendor/bin/sami.php --version
script:
# Generate documentation
- vendor/bin/sami.php update phpunit-mock-objects.php --no-ansi -vvv
after_success:
# Commit generated documentation to gh-pages branch
- cd gh-pages
- git add --all
- git commit -m 'Automatic update by Travis. [skip ci]'
- git push