Skip to content

Commit 2560072

Browse files
committed
template: Fix indentation of sequences
Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
1 parent 2b759bb commit 2560072

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

template.travis.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ git:
2727
#branches:
2828
# Black-listing approach
2929
#except:
30-
#- no-ci
30+
#- no-ci
3131

3232
## Build Environment Specification
3333
### Whether to use faster container build(false) or flexible VM build(required)
@@ -40,7 +40,7 @@ dist: trusty
4040
### Services pre-installed in the CI environment to start up
4141
### https://docs.travis-ci.com/user/database-setup/#Starting-Services
4242
#services:
43-
#- mysql
43+
#- mysql
4444

4545
## The Build Lifecycle
4646
## https://docs.travis-ci.com/user/customizing-the-build/#The-Build-Lifecycle
@@ -55,47 +55,47 @@ dist: trusty
5555
# Software sources to be added
5656
# https://github.com/travis-ci/apt-source-whitelist
5757
#sources:
58-
#- ubuntu-toolchain-r-test
58+
#- ubuntu-toolchain-r-test
5959

6060
# Software packages to be installed
6161
#packages:
62-
#- libpng12-dev
62+
#- libpng12-dev
6363

6464
# Hostname can be customized via hosts addon
6565
# https://docs.travis-ci.com/user/customizing-the-build/#Custom-Hostnames
6666
#hosts: true
67-
#- mysite.com
67+
#- mysite.com
6868

6969
### You can run custom commands before the installation step
7070
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
7474

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
7878

7979
### Install/Setup any required dependencies used in continuous integration
8080
### https://docs.travis-ci.com/user/installing-dependencies/
8181
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
8484

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
8787

8888
### You can run custom commands before the script/build step
8989
before_script: true
90-
#- ./prepare-building
90+
#- ./prepare-building
9191

9292
### Put your build scripts here
9393
script: true
94-
#- ./build
94+
#- ./build
9595

9696
### You can remove files that are not needed for caching here
9797
before_cache: true
98-
#- rm $HOME/.cabal/logs/build.log
98+
#- rm $HOME/.cabal/logs/build.log
9999

100100
### Caches non-variating contents to speed up build
101101
#cache:
@@ -115,13 +115,13 @@ before_deploy: true
115115
### https://docs.travis-ci.com/user/deployment/
116116
#deploy:
117117
#- provider: undefined
118-
#on:
119-
#branch: master
120-
#tags: true
118+
#on:
119+
#branch: master
120+
#tags: true
121121
#- provider: undefined
122-
#on:
123-
#branch: master
124-
#tags: true
122+
#on:
123+
#branch: master
124+
#tags: true
125125

126126
### You can run custom commands after the deploy step
127127
after_deploy: true

0 commit comments

Comments
 (0)