This repository has been archived by the owner on Nov 28, 2021. It is now read-only.
forked from smallhadroncollider/taskell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53f8b8b
commit c3360cf
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Use new container infrastructure to enable caching | ||
sudo: false | ||
|
||
# Do not choose a language; we provide our own build tools. | ||
language: generic | ||
|
||
# Caching so the next build will be fast too. | ||
cache: | ||
directories: | ||
- $HOME/.stack | ||
|
||
# Ensure necessary system libraries are present | ||
addons: | ||
apt: | ||
packages: | ||
- libgmp-dev | ||
|
||
before_install: | ||
# Download and unpack the stack executable | ||
- mkdir -p ~/.local/bin | ||
- export PATH=$HOME/.local/bin:$PATH | ||
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' | ||
|
||
install: | ||
# Build dependencies | ||
- stack --no-terminal --install-ghc test --only-dependencies | ||
|
||
script: | ||
# Build the package, its tests, and its docs and run the tests | ||
- stack --no-terminal test |