File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 28
28
install : |
29
29
apt-get update -y
30
30
apt-get install -y ghc libghc-quickcheck2-dev libghc-hspec-dev libghc-getopt-generics-dev libghc-split-dev curl
31
+ # [FIXME] Re-enable when `unicode-data` is released with QuickCheck properties
32
+ # run: |
33
+ # ghc --version
34
+ # curl -s -L https://hackage.haskell.org/package/unicode-data-0.3.0.tar.gz | tar xz
35
+ # ghc --make -XMagicHash -XBangPatterns -XUnboxedTuples -itest:unicode-data-0.3.0/lib -o extras test/Extra.hs
36
+ # ./extras
37
+ # ghc --make -XMagicHash -XBangPatterns -XUnboxedTuples -itest:unicode-data-0.3.0/lib -o quickcheck test/Properties.hs
38
+ # ./quickcheck
39
+ # ghc --make -XMagicHash -XBangPatterns -XUnboxedTuples -itest:unicode-data-0.3.0/lib -o ucd test/NormalizationTest.hs
40
+ # ./ucd
31
41
run : |
32
42
ghc --version
33
- curl -s -L https://hackage.haskell.org/package /unicode-data-0.3.0 .tar.gz | tar xz
43
+ curl -s -L https://github.com/composewell /unicode-data/archive/refs/heads/wip/quick_check .tar.gz | tar xz
34
44
ghc --make -XMagicHash -XBangPatterns -XUnboxedTuples -itest:unicode-data-0.3.0/lib -o extras test/Extra.hs
35
45
./extras
36
46
ghc --make -XMagicHash -XBangPatterns -XUnboxedTuples -itest:unicode-data-0.3.0/lib -o quickcheck test/Properties.hs
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ packages: .
2
2
source-repository-package
3
3
type : git
4
4
location : https://github.com/composewell/unicode-data.git
5
- tag : d81b67cc76d7f312a35de8e2a42c8e856c393885
5
+ tag : 071085020e3934df59516b0fabc262c3cbe3e9d9
Original file line number Diff line number Diff line change @@ -2,9 +2,11 @@ packages:
2
2
- ' .'
3
3
resolver : lts-18.18
4
4
extra-deps :
5
- - unicode-data-0.2.0
5
+ # [TODO] re-enable once unicode-data is released with quick check
6
+ # - unicode-data-XXX
7
+ - git : https://github.com/composewell/unicode-data.git
8
+ commit : 071085020e3934df59516b0fabc262c3cbe3e9d9
6
9
- tasty-bench-0.3
7
-
8
10
# Look at https://stackoverflow.com/questions/70045586/could-not-find-module-system-console-mintty-win32-when-compiling-test-framework
9
11
flags :
10
12
mintty :
You can’t perform that action at this time.
0 commit comments