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

.travis.yml - github.com/nextcloud/client_theming.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b700a019d49f608d879cfe7eaffff8f92612c28 (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
51
52
53
54
55
os: linux
dist: trusty
sudo: required
language: generic

services:
- docker

env:
  global:
  - DOCKER_IMAGE=ubuntu:xenial
  - SNAP_PRIME_ON_PULL_REQUEST=true
  - SNAP_DEPLOY_CHANNEL=edge
  - SNAPCRAFT_CONFIG_KEY=$encrypted_ad766d8d4221_key
  - SNAPCRAFT_CONFIG_IV=$encrypted_ad766d8d4221_iv

  matrix:
  - BUILD_TYPE=appimage
  - BUILD_TYPE=snap
  - BUILD_TYPE=snap ARCH=i386
  - BUILD_TYPE=debian
  - BUILD_TYPE=win

before_install:
  - linux/travis-build.sh before_install

install:
  - linux/travis-build.sh install

before_script:
  - linux/travis-build.sh before_script

script:
  - linux/travis-build.sh script

after_success:
  - linux/travis-build.sh after_success

deploy:
  - provider: script
    skip_cleanup: true
    script: linux/travis-build.sh snap_store_deploy
    on:
      condition: ($BUILD_TYPE = snap && -n "$SNAPCRAFT_CONFIG_KEY" && -n "$SNAPCRAFT_CONFIG_IV")

  - provider: script
    skip_cleanup: true
    script: linux/travis-build.sh ppa_deploy
    on:
      condition: ($BUILD_TYPE = debian)

branches:
  except:
    - # Do not build tags that we create when we upload to GitHub Releases
    - /^(?i:continuous)$/