Hexo-Travis CI

Travis CI is a hosted, distributed continuous integration service used to build and test software projects hosted at GitHub.

Hexo blog system could using Travis CI.It will help you automatic building and Deploying.

How to using Travis CI for Hexo

Preparation

Create travis.yml

1
2
3
4
5
6
7
8
9
10
11
12
language: node_js
sudo: false
node_js:
- "4"
cache:
npm: ture
directories:
- node_modules
- themes/tranquilpeak/node_modules
branches:
only:
- blog-source

Turn on the repository switch in the Travis.

Setp 1

Generating a new SSH key.

1
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

It will generate two files, ssh_key and ssh_key.pub.

Copies the contents of the ssh_key.pub file to your clipboard and adding it to the Repository`s Deploy Keys. #### Setp 2 Encryption private key.

Install Travis CI Command line client

1
gem install travis

Login in travis

1
travis login --auto

Encrypted ssh_key

1
travis encrypt-file id_rsa --add

It will generate ssh_key.enc file and automatic write some config into .travis.yml.

Modify .travis.yml file

1
2
- openssl aes-256-cbc -K $encrypted_*****_key -iv $encrypted_*****_iv
-in ssh_key.enc -out ~/.ssh/id_rsa -d

Setp 3

It will make building systems to establish a default ssh connection

Create ssh_config file and modify .travis.yml

1
2
3
4
5
Host github.com
User git
StrictHostKeyChecking no
IdentityFile ~/.ssh/id_rsa
IdentitiesOnly yes

1
2
3
4
- chmod 600 ~/.ssh/id_rsa
- eval $(ssh-agent)
- ssh-add ~/.ssh/id_rsa
- cp ssh_config ~/.ssh/config

Setp 4

Travis Full configuration.

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
language: node_js
sudo: false
node_js:
- "4"
cache:
npm: ture
directories:
- node_modules
branches:
only:
- blog-source
before_install:
- openssl aes-256-cbc -K $encrypted_*****_key -iv $encrypted_*****_iv
-in ssh_key.enc -out ~/.ssh/id_rsa -d
- chmod 600 ~/.ssh/id_rsa
- eval $(ssh-agent)
- ssh-add ~/.ssh/id_rsa
- cp ssh_config ~/.ssh/config
- git config --global user.name "yourname"
- git config --global user.email "your_email@example.com"
install:
- npm install -g hexo-cli
- npm install
- npm install hexo-generator-sitemap --save
- npm install hexo-generator-baidu-sitemap --save
script:
- hexo cl
- hexo g
- hexo d

Finally

Commit and push to the repository.Enjoy It!