Skip to content

Commit d6cb369

Browse files
Update dependencies
1 parent 097b399 commit d6cb369

File tree

6 files changed

+26
-7
lines changed

6 files changed

+26
-7
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,26 @@ test-all: # run tests for all versions
177177
|| echo stack-8.4.4.yaml))
178178
> @command -v hr >/dev/null 2>&1 && hr $(CONFIG) || true
179179
> @make test CONFIG=$(CONFIG)
180+
> $(eval CONFIG := $(shell \
181+
test -f stack-nix-8.6.5.yaml \
182+
&& echo stack-nix-8.6.5.yaml \
183+
|| echo stack-8.6.5.yaml))
184+
> @command -v hr >/dev/null 2>&1 && hr $(CONFIG) || true
185+
> @make test CONFIG=$(CONFIG)
180186
> $(eval CONFIG := $(shell \
181187
test -f stack-nix.yaml \
182188
&& echo stack-nix.yaml \
183189
|| echo stack.yaml))
184190
> @command -v hr >/dev/null 2>&1 && hr $(CONFIG) || true
185191
> @make test CONFIG=$(CONFIG)
192+
> $(eval STACK_NIX_PATH := $(shell \
193+
test -f stack-nix-nightly.path \
194+
&& cat stack-nix-nightly.path \
195+
|| true))
196+
> @command -v hr >/dev/null 2>&1 && hr nightly || true
197+
> @test -f stack-nix-nightly.path \
198+
> && make test RESOLVER=nightly STACK_NIX_PATH="$(STACK_NIX_PATH)" \
199+
> || make test RESOLVER=nightly
186200
.PHONY: test-all
187201

188202
todo: # search for TODO items

queue-sheet.cabal

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ tested-with:
2121
GHC ==8.2.2
2222
|| ==8.4.4
2323
|| ==8.6.5
24+
|| ==8.8.3
25+
|| ==8.10.1
2426

2527
extra-source-files:
2628
CHANGELOG.md

stack-8.2.2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ packages:
55

66
extra-deps:
77
- ginger-0.8.4.0
8-
- ttc-0.2.0.0
8+
- ttc-0.2.2.0

stack-8.4.4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ packages:
55

66
extra-deps:
77
- ginger-0.8.4.0
8-
- ttc-0.2.0.0
8+
- ttc-0.2.2.0

stack-8.6.5.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
resolver: lts-14.27
2+
3+
packages:
4+
- .
5+
6+
extra-deps:
7+
- ttc-0.2.2.0

stack.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
resolver: lts-14.27
1+
resolver: lts-16.6
22

33
packages:
44
- .
5-
6-
extra-deps:
7-
- ginger-0.8.4.0
8-
- ttc-0.2.0.0

0 commit comments

Comments
 (0)