mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-11 23:08:30 +01:00
23 lines
465 B
YAML
23 lines
465 B
YAML
# Disable Docker stuff to try to make it faster
|
|
sudo: true
|
|
dist: bionic
|
|
|
|
# Choose a lightweight base image; we provide our own build tools.
|
|
language: generic
|
|
|
|
# GHC depends on GMP. You can add other dependencies here as well.
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libgmp-dev
|
|
|
|
# Edit etc/ci-script.sh to change GHC version
|
|
script:
|
|
- ./etc/check.sh
|
|
|
|
# Caching doesn't work with sudo: true
|
|
#cache:
|
|
# directories:
|
|
# - $HOME/.stack
|
|
# - $HOME/.stackage/curator/cache
|