Making Github skelton repository with Travis-CI for cryptocurrency

Words
215
Reading
1 min
Listen
Play
9y

Today, I've made github repository, and set up Travis-CI. Continuous integration is essential on making a cryptocurrency. CodableCash is built with Java environment, so it is used with Maven.

Steps to make CI Repository

The repository is made as Eclipse Project. We can clone the project and open it as Eclipse project. About how to open with eclipse, please take a look at following page.

https://github.com/alinous-core/codablecash/blob/master/SETUP_ECLIPSE.md

What I did in order to do that is below. It was not so troublesome task.

1. Set up Eclipse and Maven

At first, open eclipse and create Maven project. Right clock on the Package Explorer, select "New Project". After that, select "Maven -> Maven Project" on the dialog.

Then a new project was made, and write "pom.xml" like below.

2.Put travis setting file

It is very easy. Just make ".travis.yml" file, and write following code there.

language: java
jdk:
 - openjdk7
script: "mvn clean install"
after_success:
 - mvn clean test
notifications:
 email:
   recipients:
     - [email protected]

3. Create github repository

Create a new repository on github. And Turn travis CI on.

4. Copy directory

After making github, clone the repository into local folder. And copy the files on the Eclipse Project. And push it back. After this process, a github repository with Travis-CI is made.

I'll add new source code into this repository.

Making Github skelton repository with Travis-CI for cryptocurrency | Ecency