Skip to content

Commit 313688c

Browse files
committed
ci: Clean up unused template example content
Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
1 parent fca2b26 commit 313688c

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

.travis.yml

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ git:
2121
# https://docs.travis-ci.com/user/customizing-the-build/#Git-LFS-Skip-Smudge
2222
lfs_skip_smudge: false
2323

24-
### Limit Git branches to be include in continuous integration, by default all branches with the .travis.yml file will be included
25-
### https://docs.travis-ci.com/user/customizing-the-build/#Building-Specific-Branches
26-
#branches:
27-
#except:
28-
#- no-ci
29-
3024
## Build Environment Specification
3125
### Whether to use faster container build(false) or flexible VM build(required)
3226
### NOTE: `sudo` is not available in container build!
@@ -35,32 +29,16 @@ sudo: false
3529
### Selection of ubuntu release for build environment
3630
dist: trusty
3731

38-
### Services pre-installed in the CI environment to start up
39-
### https://docs.travis-ci.com/user/database-setup/#Starting-Services
40-
#services:
41-
#- mysql
42-
4332
## The Build Lifecycle
4433
## https://docs.travis-ci.com/user/customizing-the-build/#The-Build-Lifecycle
4534
### Addons(?)
4635
addons:
47-
# APT addon allows container build to install limited software sources and packages to the system in Travis CI's whitelist
4836
apt:
49-
# Software sources to be added
50-
# https://github.com/travis-ci/apt-source-whitelist
51-
#sources:
52-
#- ubuntu-toolchain-r-test
53-
5437
# Software packages to be installed
5538
packages:
5639
- realpath # script dependencies
5740
- python-pip # for yamllint
5841

59-
# Hostname can be customized via hosts addon
60-
# https://docs.travis-ci.com/user/customizing-the-build/#Custom-Hostnames
61-
#hosts: true
62-
#- mysite.com
63-
6442
### You can run custom commands before the installation step
6543
before_install:
6644
- git submodule init 'Utilities for Travis CI' 'GNU Bash Automatic Checking Program for Git Projects'
@@ -69,8 +47,6 @@ before_install:
6947
### Install/Setup any required dependencies used in continuous integration
7048
### https://docs.travis-ci.com/user/installing-dependencies/
7149
install:
72-
#### Traditional package installing(requires VM build environment)
73-
#- sudo apt-get install
7450

7551
#### Sometimes dependencies needs to be build from source code and install/setup to use it
7652
#### https://docs.travis-ci.com/user/installing-dependencies/#Installing-Projects-from-Source
@@ -87,7 +63,6 @@ before_script:
8763

8864
### Put your build scripts here
8965
script: true
90-
#- ./build
9166

9267
### You can remove files that are not needed for caching here
9368
before_cache: true
@@ -106,18 +81,6 @@ after_success: true
10681

10782
before_deploy: true
10883

109-
### Software deployment phase
110-
### https://docs.travis-ci.com/user/deployment/
111-
#deploy:
112-
#- provider: undefined
113-
#on:
114-
#branch: master
115-
#tags: true
116-
#- provider: undefined
117-
#on:
118-
#branch: master
119-
#tags: true
120-
12184
after_deploy: true
12285

12386
after_script: true

0 commit comments

Comments
 (0)