Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3b0fd484373644525070c9d4dfb0ab7928ebb57 (plain)
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
language: ruby

rvm:
  - 2.6.6
  - 2.5.8

env:
  - DB=postgresql BUILD_TYPE=cucumber
  - DB=mysql BUILD_TYPE=cucumber
  - DB=postgresql BUILD_TYPE=other
  - DB=mysql BUILD_TYPE=other

sudo: false
cache:
  bundler: true
  directories:
    - app/assets/images
    - tmp/cache/assets

addons:
  apt:
    packages: 
      - libidn11-dev
      - ghostscript

services:
  - postgresql
  - mysql

branches:
  only:
    - 'master'
    - 'next-minor'
    - 'develop'

before_install:
  - script/ci/prepare.sh
  - mkdir travis-phantomjs
  - wget http://cifiles.diasporafoundation.org/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2
  - tar -xvf $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C $PWD/travis-phantomjs
  - export PATH=$PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64/bin:$PATH

script: "bin/rake --trace ci:travis:${BUILD_TYPE}"

notifications:
  irc:
    channels:
      - secure: YvYkeTAw+5oOl/RaXVwu7JkKGNWPoFosNQRmLvJkBFbWzZ1s5LZD1u3+Qj819bT3lGzJu9pxmJg765IRYrGWmBi4mcAV3dpO6qowVdFTcorf0JsnLw3Kvkga9rrDunsRNr21KTAQqHOO5mKUzw9DtMzd52BiWuZwIj3xcl72gQI=
    template:
      - "%{repository_slug}#%{commit} (%{branch} - %{commit_subject}): %{message} %{build_url}"