File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -109,8 +109,14 @@ jobs:
109
109
githubToken : ${{ github.token }}
110
110
install : |
111
111
apt-get update -y
112
- apt-get install -y ghc libghc-quickcheck2-dev libghc-tasty-dev libghc-tasty-quickcheck-prof cpphs git make
112
+ apt-get install -y ghc libghc-quickcheck2-dev libghc-tasty-dev libghc-tasty-quickcheck-prof cpphs git make curl
113
113
run : |
114
+ curl -O https://hackage.haskell.org/package/bytestring-0.11.3.0/bytestring-0.11.3.0.tar.gz
115
+ tar xf bytestring-0.11.3.0.tar.gz
116
+ cd bytestring-0.11.3.0/
117
+ runhaskell Setup.hs configure
118
+ runhaskell Setup.hs install --global
119
+ cd ..
114
120
ghc --version
115
121
ghc --make -o Main tests/Test.hs -itests/ +RTS -s
116
122
./Main +RTS -s
@@ -125,11 +131,17 @@ jobs:
125
131
- name : install
126
132
run : |
127
133
apt-get update -y
128
- apt-get install -y ghc libghc-quickcheck2-dev libghc-tasty-dev libghc-tasty-quickcheck-prof cpphs git make
134
+ apt-get install -y ghc libghc-quickcheck2-dev libghc-tasty-dev libghc-tasty-quickcheck-prof cpphs git make curl
129
135
shell : bash
130
136
- uses : actions/checkout@v1
131
137
- name : test
132
138
run : |
139
+ curl -O https://hackage.haskell.org/package/bytestring-0.11.3.0/bytestring-0.11.3.0.tar.gz
140
+ tar xf bytestring-0.11.3.0.tar.gz
141
+ cd bytestring-0.11.3.0/
142
+ runhaskell Setup.hs configure
143
+ runhaskell Setup.hs install --global
144
+ cd ..
133
145
ghc --version
134
146
ghc --make -o Main tests/Test.hs -itests/ +RTS -s
135
147
./Main +RTS -s
You can’t perform that action at this time.
0 commit comments