diff options
author | Dominic Steinitz <dominic@steinitz.org> | 2018-04-10 14:20:02 +0100 |
---|---|---|
committer | Dominic Steinitz <dominic@steinitz.org> | 2018-04-10 14:20:02 +0100 |
commit | 13136e0b018153bf539709f7bdf952760201715b (patch) | |
tree | 490f05f7eb957d660e8501b429c082df03e8a5bf /.circleci/config.yml | |
parent | e5aa94964f73c7c023d7c3934d79338adc99d456 (diff) |
Remove unnecessary extra
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 1433417..d19e684 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml | |||
@@ -12,7 +12,6 @@ jobs: | |||
12 | command: nix-channel --update | 12 | command: nix-channel --update |
13 | - run: | 13 | - run: |
14 | name: Building dependencies | 14 | name: Building dependencies |
15 | shell: /bin/bash -eilo pipefail | ||
16 | command: | | 15 | command: | |
17 | nix-env -f nixpkgs.nix -iA stack | 16 | nix-env -f nixpkgs.nix -iA stack |
18 | stack --nix --no-terminal --nix build --only-snapshot --prefetch --no-haddock --test --bench --jobs=1 | 17 | stack --nix --no-terminal --nix build --only-snapshot --prefetch --no-haddock --test --bench --jobs=1 |
@@ -22,17 +21,14 @@ jobs: | |||
22 | key: stack-deps-eek-{{ checksum "stack.yaml" }} | 21 | key: stack-deps-eek-{{ checksum "stack.yaml" }} |
23 | - run: | 22 | - run: |
24 | name: Building | 23 | name: Building |
25 | shell: /bin/bash -eilo pipefail | ||
26 | command: | | 24 | command: | |
27 | stack --nix --no-terminal --nix build --pedantic | 25 | stack --nix --no-terminal --nix build --pedantic |
28 | - run: | 26 | - run: |
29 | name: Building tests | 27 | name: Building tests |
30 | shell: /bin/bash -eilo pipefail | ||
31 | command: | | 28 | command: | |
32 | stack --nix test --pedantic --no-run-tests | 29 | stack --nix test --pedantic --no-run-tests |
33 | - run: | 30 | - run: |
34 | name: Running tests | 31 | name: Running tests |
35 | shell: /bin/bash -eilo pipefail | ||
36 | command: | | 32 | command: | |
37 | stack --nix test | 33 | stack --nix test |
38 | 34 | ||