This repository has been archived by the owner on Oct 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.travis.yml
59 lines (55 loc) · 1.62 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
language: cpp
sudo: required
matrix:
include:
- env: ARCH=x86_64
addons:
apt:
update: true
packages:
- librsvg2-bin
- libfuse-dev
- desktop-file-utils
- ccache
- libcurl3
- libbsd-dev
- libcairo-dev
- rpm
- librsvg2-dev
- env: ARCH=i386
addons:
apt:
packages:
- gcc-multilib
- g++-multilib
- libfuse2:i386
- libfuse-dev:i386
- desktop-file-utils
- ccache
- libbsd-dev:i386
- libglib2.0-dev:i386
- liblzma-dev:i386
- libgtest-dev
- libcairo2-dev:i386
- librsvg2-bin:i386
- librsvg2-dev:i386
- libfreetype6-dev:i386
- libfontconfig1-dev:i386
- rpm
- gir1.2-rsvg-2.0:i386
- libgdk-pixbuf2.0-dev:i386
- gir1.2-freedesktop:i386
- gir1.2-gdkpixbuf-2.0:i386
- gir1.2-glib-2.0:i386
- libgirepository-1.0-1:i386
script:
- ( mkdir -p ./lib ; cd ./lib/ ; git clone --recursive https://github.com/AppImage/libappimage )
- bash -xe travis/travis-build.sh
after_success:
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- if [ "$TRAVIS_BRANCH" != "master" ]; then export TRAVIS_EVENT_TYPE=pull_request; fi
- bash upload.sh appimaged*.AppImage* appimaged*.deb* appimaged*.rpm*
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)$/