-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
44 lines (36 loc) · 962 Bytes
/
.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
language: generic
os: linux
dist: xenial
compiler: g++
services: docker
git:
quiet: true
depth: 1
addons:
apt:
packages:
python3
python3-pip
install:
- pip3 install requests
before_script:
- python --version
- python3 --version
- git clone https://github.com/mypaint/mypaint.git
- git clone https://github.com/mypaint/libmypaint.git
- git clone https://github.com/mypaint/mypaint-brushes.git
- # 20 minutes should be plenty to pull the docker image
- travis_wait 20
sudo docker pull mypaint/appimage-base:1.3.3
script:
- sudo docker run -t -v $(pwd):/sources mypaint/appimage-base:1.3.3
scl enable devtoolset-8 "bash -c /sources/scripts/mkappimage.sh"
after_success:
- cd $TRAVIS_BUILD_DIR
- ls -lh out/*
- bash ./scripts/upload.sh out/*
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)$/
- /^(?i:continuous-rotating)$/