From dba17b895ed8c46372b1ede0104678cc66a67a19 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Thu, 20 Nov 2014 22:27:19 -0800 Subject: [PATCH] Bye Travis, hi Circle --- .travis.yml | 20 -------------------- circle.yml | 3 +++ 2 files changed, 3 insertions(+), 20 deletions(-) delete mode 100644 .travis.yml create mode 100644 circle.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 149eb2dd3..000000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: haskell -ghc: 7.8 -addons: - postgresql: "9.3" -before_install: - - createuser --superuser --no-password dbapi_test - - createdb -O dbapi_test -U postgres dbapi_test - - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - - travis_retry sudo apt-get update - - travis_retry sudo apt-get install --force-yes happy-1.19.3 alex-3.1.3 - - export PATH=/opt/alex/3.1.3/bin:/opt/happy/1.19.3/bin:$PATH -install: - - travis_retry curl http://bin.begriffs.com/dbapi/cabal-sandbox.tar.xz | tar xJ - - chmod a+x .cabal-sandbox/bin/* - - cabal sandbox init - - cabal install --enable-test --dependencies-only - - cabal install --enable-test -script: - - cabal test --show-details=always --test-options="--color" - - .cabal-sandbox/bin/hlint src/*.hs test/**/*.hs diff --git a/circle.yml b/circle.yml new file mode 100644 index 000000000..85a4f567f --- /dev/null +++ b/circle.yml @@ -0,0 +1,3 @@ +machine: + ghc: + version: 7.8.3