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

Commit

Permalink
build: initial .travis.yml implementation
Browse files Browse the repository at this point in the history
PR-URL: #14
Reviewed-By: olivia <olivia@fastmail.com>
  • Loading branch information
addaleax committed Aug 24, 2017
1 parent b3c4e94 commit ef0942c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: cpp
compiler:
- clang
os:
- linux
sudo: false
cache: ccache
before_install:
- export CXX="ccache clang++ -Qunused-arguments"
- export CC="ccache clang -Qunused-arguments"
- export JOBS=2
install:
- ./configure
- make -j2 V=
script:
- make -j2 test-ci
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Ayo.js

[![Build Status](https://travis-ci.org/ayojs/ayo.svg?style=flat&branch=master)](https://travis-ci.org/ayojs/ayo?branch=master)

_(Note: Ayo.js is forked from [Node.js][]. Currently, a lot of the documentation
still points towards the Node.js repository.)_

Expand Down

0 comments on commit ef0942c

Please sign in to comment.