From c42a2660e6f2f21313d8272b8d7a490210a0534b Mon Sep 17 00:00:00 2001 From: Schell Scivally Date: Thu, 24 Jan 2019 09:58:37 -0800 Subject: [PATCH] gitlab ci --- .gitlab-ci.yml | 10 ++++++++++ package.yaml | 28 ++++++++++++++-------------- 2 files changed, 24 insertions(+), 14 deletions(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4814d15 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: fpco/stack-build:latest +cache: + - .stack/ + - .stack-work/ + +build: + stage: build + script: + - apt-get update -y + - stack setup diff --git a/package.yaml b/package.yaml index 2c9cf96..3386f16 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: typograffiti -version: 0.1.0.2 +version: 0.1.0.3 github: "schell/typograffiti" license: BSD3 author: "Schell Scivally" @@ -36,16 +36,16 @@ description: This is a text rendering library that uses OpenGL dependencies: - base >= 4.7 && < 5 -- bytestring -- containers -- freetype2 -- gl -- linear -- mtl -- pretty-show -- stm -- template-haskell -- vector +- bytestring >= 0.10 +- containers >= 0.6 +- freetype2 >= 0.1 +- gl >= 0.8 +- linear >= 1.20 +- mtl >= 2.2 +- pretty-show >= 1.9 +- stm >= 2.5 +- template-haskell >= 2.14 +- vector >= 0.12 library: source-dirs: src @@ -59,9 +59,9 @@ executables: - -rtsopts - -with-rtsopts=-N dependencies: - - filepath - - pretty-show - - sdl2 + - filepath >= 1.4 + - pretty-show >= 1.9 + - sdl2 >= 2.4.1 - typograffiti -- 2.30.2