Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
(#24) added in .travis.yml and badge to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry J. Wylde committed Oct 21, 2015
1 parent 7fe0f81 commit 8e9b44b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
sudo: false

language: c

addons:
apt:
packages:
- libgmp3-dev

cache:
directories:
- $HOME/.stack/

env:
- ARGS=""
- ARGS="--resolver lts-1"
- ARGS="--resolver lts-2"
- ARGS="--resolver lts-3"
- ARGS="--resolver lts"
- ARGS="--resolver nightly"

before_install:
- mkdir -p ~/.local/bin
- export PATH=~/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip=1 -C ~/.local/bin '*/stack'

install:
- travis_wait stack $ARGS --no-terminal --skip-ghc-check setup
- travis_wait stack $ARGS --no-terminal --skip-ghc-check test --only-snapshot

script:
- stack $ARGS --no-terminal --skip-ghc-check test

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# language-qux

[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/1.0.0/active.svg)](http://www.repostatus.org/#active)
[![Build Status](https://travis-ci.org/qux-lang/language-qux.svg?branch=master)](https://travis-ci.org/qux-lang/language-qux)
[![Release](https://img.shields.io/github/release/qux-lang/language-qux.svg)](https://github.com/qux-lang/language-qux/releases)

Qux is an experimental language developed from the ground up with the aim of supporting extended
Expand Down

0 comments on commit 8e9b44b

Please sign in to comment.