-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.travis.yml
30 lines (29 loc) · 1.32 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
language: generic
os: linux
dist: trusty
compiler: g++
sudo: required
services: docker
env:
- GTK_VERSION=2
- GTK_VERSION=3
#- BABL_GIT_TAG=BABL_0_1_72
#- GEGL_GIT_TAG=GEGL_0_4_18
- GIMP_GIT_TAG=GIMP_2_10_22
#- TARGET_SYSTEM=Linux
before_script:
- travis_wait 120 sleep infinity & sudo docker pull photoflow/docker-centos7-gimp
#- sudo docker run -it -v $(pwd):/sources -e BABL_GIT_TAG="$BABL_GIT_TAG" -e GEGL_GIT_TAG="$GEGL_GIT_TAG" -e GIMP_GIT_TAG="$GIMP_GIT_TAG" photoflow/docker-trusty-gimp bash /sources/build-appimage.sh
#- sudo docker run -it -v $(pwd):/sources -e GTK_VERSION="${GTK_VERSION}" -e BABL_GIT_TAG="BABL_0_1_62" -e GEGL_GIT_TAG="GEGL_0_4_14" -e GIMP_GIT_TAG="$GIMP_GIT_TAG" photoflow/docker-centos7-gimp bash /sources/mkappimage.sh
- sudo docker run -it -v $(pwd):/sources -e GTK_VERSION="${GTK_VERSION}" -e BABL_GIT_TAG="BABL_0_1_82" -e GEGL_GIT_TAG="GEGL_0_4_26" -e GIMP_GIT_TAG="${GIMP_GIT_TAG}" photoflow/docker-centos7-gimp bash /sources/mkappimage.sh
after_success:
- cd $TRAVIS_BUILD_DIR
- ls -lh
- ls out/*
- wget -c https://github.com/aferrero2707/uploadtool/raw/master/upload_rotate.sh
- bash ./upload_rotate.sh "continuous" out/* >& /dev/null
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)$/
- /^(?i:unstable)$/