forked from uofw/uofw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
63 lines (48 loc) · 2.06 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
language: cpp
branches:
only:
- master
env:
global:
- secure: "aiH0ZGvhmY7ldfRxngIZHDuWE7ZF5UpVL577hIOUW1P+t+5lOq4hXpTaJgbaEgl0ZQ9GudeFpwx+OvUoxGwLa1wofGGSygeYRl0rfui3XkNx+5RevZ+KOuRQcv+4gJ15twvhP4+XHKfE/B8HWTO5IGN+ntRn+NzXJQLUZFXnOW8=" # GH_AUTH
before_install:
- sudo apt-get update -qq
- sudo apt-get remove mingw* -q
install:
- sudo apt-get install doxygen g++-mingw-w64-i686 -q
- cd ..
- wget https://dl.dropboxusercontent.com/u/23414835/PSPSDK/psptoolchain_1.0_amd64.deb -O psptoolchain.deb
- sudo dpkg --install psptoolchain.deb
- source /etc/profile.d/psptoolchain.sh
- cd $TRAVIS_BUILD_DIR
script:
- make -k
after_script:
- if [[ $TRAVIS_PULL_REQUEST == 'false' && $TRAVIS_BRANCH == 'master' ]]; then
- mkdir gh-pages && cd gh-pages
- git clone "https://github.com/$TRAVIS_REPO_SLUG.git" --branch gh-pages .
- export GIT_ROOT=$TRAVIS_BUILD_DIR
- if [[ $(git -C $GIT_ROOT log --pretty=%s -1 $TRAVIS_COMMIT) != *"[docs-skip]"* ]]; then
- doxygen ../docs/Doxyfile
- fi
- if [[ $(git -C $GIT_ROOT log --pretty=%s -1 $TRAVIS_COMMIT) == *"[exec-build]"* || $(git -C $GIT_ROOT diff-tree --name-only --no-commit-id $TRAVIS_COMMIT $GIT_ROOT/utils) ]]; then
- cd $GIT_ROOT/utils
- mkdir -p ../gh-pages/executables
- make mrproper all CC=gcc -m32 CXX=g++ -m32
- for file in $(find */ -executable -type f); do
- mv $file "../gh-pages/executables/$(basename $file)-i386"
- done
- make mrproper all CC="i686-w64-mingw32-gcc -m32" CXX="i686-w64-mingw32-g++ -m32"
- for file in $(find */ -executable -type f); do
- mv $file "../gh-pages/executables/$(basename $file)-i386.exe"
- done
- fi
- cd $GIT_ROOT/gh-pages
- git config user.email "[email protected]"
- git config user.name "uOFW Doc builder"
- git remote set-url origin "https://${GH_AUTH}@github.com/$TRAVIS_REPO_SLUG.git"
- git checkout gh-pages
- git add .
- git commit -am "Rebuilt docs for $TRAVIS_COMMIT"
- git push origin gh-pages 2>&1 | sed "s/${GH_AUTH}/[secure]/gi"
- fi