Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit ef0942c

Browse files
committed
build: initial .travis.yml implementation
PR-URL: #14 Reviewed-By: olivia <[email protected]>
1 parent b3c4e94 commit ef0942c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: cpp
2+
compiler:
3+
- clang
4+
os:
5+
- linux
6+
sudo: false
7+
cache: ccache
8+
before_install:
9+
- export CXX="ccache clang++ -Qunused-arguments"
10+
- export CC="ccache clang -Qunused-arguments"
11+
- export JOBS=2
12+
install:
13+
- ./configure
14+
- make -j2 V=
15+
script:
16+
- make -j2 test-ci

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Ayo.js
22

3+
[![Build Status](https://travis-ci.org/ayojs/ayo.svg?style=flat&branch=master)](https://travis-ci.org/ayojs/ayo?branch=master)
4+
35
_(Note: Ayo.js is forked from [Node.js][]. Currently, a lot of the documentation
46
still points towards the Node.js repository.)_
57

0 commit comments

Comments
 (0)