-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
47 lines (38 loc) · 1.31 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Use container infrastructure to enable caching
sudo: false
# Do not choose a language; we provide our own build tools.
language: haskell
# 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 SAVED_PATH="$PATH"
- 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 --haddock --no-haddock-deps
before_deploy:
# Restore PATH in order to use globally installed Cabal.
# The one installed by stack needs an extra upload --publish flag for fully
# automatic deployment.
- export PATH="$SAVED_PATH"
deploy:
provider: hackage
username: StefanKersten
password:
secure: OeylLs0HzrV/W756CTWLtsaVJXENE9y6axQVeFPxLCQA42YxiHOS7xaiE/QHXWVNtXKSIqSmbrPZ4/ycMl+80YxrlY7QwoFD9ikZsENIAe6xg80z2eRzWgtp2pdlpfG0bBfAdOZ3p5aKcwF69bM2UaQWcWuHGxNcMljpN7I0TL8=
on:
repo: samplecount/shake-language-c
branch: master