summaryrefslogtreecommitdiffhomepage
path: root/.circleci/config.yml
diff options
context:
space:
mode:
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml31
1 files changed, 0 insertions, 31 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index e1e9020..0000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-version: 2
-
-workflows:
- version: 2
- simple-workflow:
- jobs:
- - build:
- filters:
- tags:
- only: /.*/
-
-jobs:
- build:
- docker:
- - image: 'haskell:8.6'
-
- steps:
- - checkout
- - restore_cache:
- key: 'v3-stylish-haskell-{{ arch }}-{{ .Branch }}'
- - run:
- name: 'Build, install and test'
- command: 'stack build --test --copy-bins --jobs=1'
- - save_cache:
- key: 'v3-stylish-haskell-{{ arch }}-{{ .Branch }}-{{ .Revision }}'
- paths:
- - '~/.stack-work'
- - '~/.stack'
- - run:
- name: 'Upload release'
- command: '.circleci/release.sh "$CIRCLE_TAG"'