-
Notifications
You must be signed in to change notification settings - Fork 19
182 lines (153 loc) · 4.63 KB
/
Copy pathmhs.yml
File metadata and controls
182 lines (153 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: MicroHs
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: checkout mhs repo
uses: actions/checkout@v4
with:
repository: augustss/MicroHs
path: mhs
- name: make and install mhs
run: |
cd mhs
make minstall
echo "$HOME/.mcabal/bin" >> "$GITHUB_PATH"
# ghc-compat
# must be installed before any other packages since there is an implicit dependency on ghc-compat
- name: compile and install ghc-compat package
run: |
mcabal install ghc-compat
# array-mhs
- name: compile and install array-mhs package
run: |
mcabal install array
# containers
- name: compile and install containers package
run: |
mcabal install containers
# transformers
- name: compile and install transformers package
run: |
mcabal install transformers
# time
- name: compile and install time package
run: |
mcabal install time
- name: compile and install polyparse
run: |
mcabal install polyparse
- name: compile and install cpphs
run: |
mcabal install cpphs
# malcolm-wallace-universe
# this have not been uploaded to hackage
- name: checkout malcolm-wallace-universe repo
uses: actions/checkout@v4
with:
repository: hackage-trustees/malcolm-wallace-universe
path: malcolm-wallace-universe
- name: compile and install hscolour
run: |
cd malcolm-wallace-universe/hscolour-1.24.4
mcabal install
# mtl-mhs
- name: compile and install mtl-mhs package
run: |
mcabal install mtl
# pretty
# not yet uploaded to hackage
- name: compile and install pretty package
run: |
mcabal install --git=http://github.com/haskell/pretty.git pretty
# parsec
# patch not merged and uploaded to hackage
- name: compile and install parsec package
run: |
mcabal install --git=http://github.com/augustss/parsec.git parsec
# splitmix
- name: compile and install splitmix package
run: |
mcabal install splitmix
# random-mhs
- name: compile and install random-mhs package
run: |
mcabal install random
# granite
# not on hackage at all
- name: checkout granite repo
uses: actions/checkout@v4
with:
repository: mchav/granite
path: granite
- name: compile and install granite package
run: |
cd granite
mcabal install
# split
- name: compile and install split package
run: |
mcabal install split
# monad-loops
- name: compile and install monad-loops package
run: |
mcabal install monad-loops
# tagged
# not uploaded to hackage
- name: compile and install tagged package
run: |
mcabal install --git=http://github.com/ekmett/tagged.git tagged
# exceptions
# not uploaded to hackage
- name: compile and install exceptions package
run: |
mcabal install --git=http://github.com/ekmett/exceptions.git exceptions
# os-string
# not merged and uploaded to hackage
- name: compile and install os-string package
run: |
mcabal install --git=http://github.com/augustss/os-string.git os-string
# filepath
# not merged and uploaded to hackage
- name: compile and install filepath package
run: |
mcabal install --git=http://github.com/augustss/filepath.git filepath
# tagsoup
- name: compile and install tagsoup package
run: |
mcabal install tagsoup
# unordered-containers
# not merged and uploaded to hackage
- name: compile and install unordered-containers package
run: |
mcabal install --git=http://github.com/augustss/unordered-containers.git unordered-containers
# async
# not merged and uploaded to hackage
- name: compile and install async package
run: |
mcabal install --git=http://github.com/augustss/async.git async
# QuickCheck
# not in stackage yet
- name: compile and install async package
run: |
mcabal install --git=http://github.com/nick8325/quickcheck QuickCheck
# colour
- name: compile and install colour package
run: |
mcabal install colour
# ansi-terminal-types
- name: compile and install ansi-terminal-types package
run: |
mcabal install ansi-terminal-types
# ansi-terminal
- name: compile and install ansi-terminal package
run: |
mcabal install ansi-terminal