-
Notifications
You must be signed in to change notification settings - Fork 1
232 lines (197 loc) · 6.01 KB
/
ci.yml
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
name: stack-templates-ci
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
# Render
render:
name: Render
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Haskell
uses: haskell/actions/setup@v2
id: setup-haskell
with:
enable-stack: true
- name: Test
run: |
.ci/render_and_check.sh
# Stack
stack:
name: Stack / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Windows missing; no cross-platform CI scripts available yet.
os: ["ubuntu-latest", "macos-latest"]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Haskell
uses: haskell/actions/setup@v2
id: setup-haskell
with:
enable-stack: true
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.setup-haskell.outputs.stack-root }}/snapshots
key:
${{ runner.os }}-stack-${{ hashFiles('**/*.cabal', '**/stack.yaml') }}
restore-keys: |
${{ runner.os }}-stack-
- name: Test
run: |
.ci/test_projects_stack.sh
# Cabal
cabal:
name: Cabal / ${{ matrix.os }} / ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ["8.6.5", "8.8.4", "8.10.7", "9.0.2"]
# Windows missing; no cross-platform CI scripts available yet.
os: ["ubuntu-latest", "macos-latest"]
# Unsupported by Clash:
exclude:
- os: macos-latest
ghc: 8.10.7
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Haskell
uses: haskell/actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key:
${{ runner.os }}-cabal-${{ matrix.ghc }}-${{ hashFiles('**/*.cabal', '**/stack.yaml') }}
restore-keys: |
${{ runner.os }}-cabal-${{ matrix.ghc }}
- name: Test
run: |
.ci/test_projects_cabal.sh
hls:
name: HLS
runs-on: ubuntu-22.04
strategy:
matrix:
tools:
- {ghc: "9.4.7", cabal: "3.8.1.0", hls: "2.4.0.0", ghcup: "0.1.20.0"}
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Haskell
run: |
sudo apt-get update
sudo apt-get install curl -y
sudo apt-get install \
build-essential curl libffi-dev libffi8ubuntu1 libgmp-dev \
libgmp10 libncurses-dev libncurses5 libtinfo5 -y
sudo curl "https://downloads.haskell.org/~ghcup/${{ matrix.tools.ghcup }}/x86_64-linux-ghcup-${{ matrix.tools.ghcup }}" --output /usr/bin/ghcup
sudo chmod +x /usr/bin/ghcup
ghcup install ghc ${{ matrix.tools.ghc }} --set --force
ghcup install cabal ${{ matrix.tools.cabal }} --set --force
ghcup install hls ${{ matrix.tools.hls }} --set --force
cabal update
echo "${HOME}/.ghcup/bin/" >> $GITHUB_PATH
ls "${HOME}/.ghcup/bin/"
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cabal/store
key: ${{ runner.os }}-cachebust1-hls-${{ matrix.tools.ghc }}-${{ matrix.tools.cabal }}-${{ matrix.tools.hls }}-${{ matrix.tools.ghcup }}-${{ hashFiles('**/*.cabal', '**/stack.yaml') }}
restore-keys: |
${{ runner.os }}-cachebust1-hls-${{ matrix.tools.ghc }}-${{ matrix.tools.cabal }}-${{ matrix.tools.hls }}-${{ matrix.tools.ghcup }}-${{ hashFiles('**/*.cabal', '**/stack.yaml') }}
${{ runner.os }}-cachebust1-hls-${{ matrix.tools.ghc }}-${{ matrix.tools.cabal }}-${{ matrix.tools.hls }}-${{ matrix.tools.ghcup }}-
- name: Test
run: |
.ci/test_projects_hls.sh
# Nix
nix:
name: Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v23
with:
nix_path: nixpkgs=channel:nixos-23.05
- name: Checkout
uses: actions/checkout@v3
- name: Enable cachix
run: |
nix-env -iA cachix -f https://cachix.org/api/v1/install
cachix use clash-lang
- name: Test
run: |
.ci/test_projects_nix.sh
# Collector job, used to match on in GitHub UI
all:
name: All
needs:
- cabal
- nix
- render
- stack
- hls
runs-on: ubuntu-22.04
steps:
- run: echo OK
# Publish
publish:
name: Publish
if: github.ref == 'refs/heads/master'
needs:
- all
runs-on: ubuntu-22.04
environment: master
env:
CLASH_STARTERS_PRIVATE_KEY: ${{ secrets.CLASH_STARTERS_PRIVATE_KEY }}
CLASH_STARTERS_PUBLIC_KEY: ${{ secrets.CLASH_STARTERS_PUBLIC_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish
run: |
sudo apt-get update
sudo apt-get install -y git ssh zip gzip tar coreutils haskell-stack
.ci/publish.sh
# Push to Cachix
publish-nix:
name: Publish Nix
if: github.ref == 'refs/heads/master'
needs:
- all
runs-on: ubuntu-22.04
environment: master
env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v23
with:
nix_path: nixpkgs=channel:nixos-23.05
- name: Checkout
uses: actions/checkout@v3
- name: Enable cachix
run: |
nix-env -iA cachix -f https://cachix.org/api/v1/install
cachix use clash-lang
- name: Push to cachix
if: github.ref == 'refs/heads/master'
run: |
.ci/publish_nix.sh