27
27
# branches:
28
28
# Black-listing approach
29
29
# except:
30
- # - no-ci
30
+ # - no-ci
31
31
32
32
# # Build Environment Specification
33
33
# ## Whether to use faster container build(false) or flexible VM build(required)
@@ -40,7 +40,7 @@ dist: trusty
40
40
# ## Services pre-installed in the CI environment to start up
41
41
# ## https://docs.travis-ci.com/user/database-setup/#Starting-Services
42
42
# services:
43
- # - mysql
43
+ # - mysql
44
44
45
45
# # The Build Lifecycle
46
46
# # https://docs.travis-ci.com/user/customizing-the-build/#The-Build-Lifecycle
@@ -55,47 +55,47 @@ dist: trusty
55
55
# Software sources to be added
56
56
# https://github.com/travis-ci/apt-source-whitelist
57
57
# sources:
58
- # - ubuntu-toolchain-r-test
58
+ # - ubuntu-toolchain-r-test
59
59
60
60
# Software packages to be installed
61
61
# packages:
62
- # - libpng12-dev
62
+ # - libpng12-dev
63
63
64
64
# Hostname can be customized via hosts addon
65
65
# https://docs.travis-ci.com/user/customizing-the-build/#Custom-Hostnames
66
66
# hosts: true
67
- # - mysite.com
67
+ # - mysite.com
68
68
69
69
# ## You can run custom commands before the installation step
70
70
before_install : true
71
- # Configure any third-party software sources(requires VM build environment)
72
- # - sudo add-apt-repository universe
73
- # - sudo add-apt-repository ppa:libreoffice/ppa
71
+ # Configure any third-party software sources(requires VM build environment)
72
+ # - sudo add-apt-repository universe
73
+ # - sudo add-apt-repository ppa:libreoffice/ppa
74
74
75
- # Update package cache if package installing is required(requires VM build environment)
76
- # https://docs.travis-ci.com/user/installing-dependencies/#Installing-Packages-from-a-custom-APT-repository
77
- # - sudo apt-get -qq update
75
+ # Update package cache if package installing is required(requires VM build environment)
76
+ # https://docs.travis-ci.com/user/installing-dependencies/#Installing-Packages-from-a-custom-APT-repository
77
+ # - sudo apt-get -qq update
78
78
79
79
# ## Install/Setup any required dependencies used in continuous integration
80
80
# ## https://docs.travis-ci.com/user/installing-dependencies/
81
81
install : true
82
- # Traditional package installing(requires VM build environment)
83
- # - sudo apt-get install
82
+ # Traditional package installing(requires VM build environment)
83
+ # - sudo apt-get install
84
84
85
- # Sometimes dependencies needs to be build from source code and install/setup to use it
86
- # https://docs.travis-ci.com/user/installing-dependencies/#Installing-Projects-from-Source
85
+ # Sometimes dependencies needs to be build from source code and install/setup to use it
86
+ # https://docs.travis-ci.com/user/installing-dependencies/#Installing-Projects-from-Source
87
87
88
88
# ## You can run custom commands before the script/build step
89
89
before_script : true
90
- # - ./prepare-building
90
+ # - ./prepare-building
91
91
92
92
# ## Put your build scripts here
93
93
script : true
94
- # - ./build
94
+ # - ./build
95
95
96
96
# ## You can remove files that are not needed for caching here
97
97
before_cache : true
98
- # - rm $HOME/.cabal/logs/build.log
98
+ # - rm $HOME/.cabal/logs/build.log
99
99
100
100
# ## Caches non-variating contents to speed up build
101
101
# cache:
@@ -115,13 +115,13 @@ before_deploy: true
115
115
# ## https://docs.travis-ci.com/user/deployment/
116
116
# deploy:
117
117
# - provider: undefined
118
- # on:
119
- # branch: master
120
- # tags: true
118
+ # on:
119
+ # branch: master
120
+ # tags: true
121
121
# - provider: undefined
122
- # on:
123
- # branch: master
124
- # tags: true
122
+ # on:
123
+ # branch: master
124
+ # tags: true
125
125
126
126
# ## You can run custom commands after the deploy step
127
127
after_deploy : true
0 commit comments