-
-
Notifications
You must be signed in to change notification settings - Fork 11
225 lines (216 loc) · 8.23 KB
/
Copy pathtest.yml
File metadata and controls
225 lines (216 loc) · 8.23 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
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
name: "Test"
on:
pull_request:
branches:
- main
paths:
- "core/**"
- "testbed/**"
- "integrations/**"
- "nix/**"
- ".github/workflows/**"
push:
branches:
- main
paths:
- "core/**"
- "testbed/**"
- "integrations/**"
- "nix/**"
- ".github/workflows/**"
permissions:
id-token: write
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: DeterminateSystems/determinate-nix-action@v3.21.2
with:
extra-conf: |
accept-flake-config = true
extra-substituters = https://cache.iog.io https://neohaskell.cachix.org
extra-trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= neohaskell.cachix.org-1:mo2cLaGbwqbrxs9xhqKK8jeNsn3osi7t6XoAmxSZssc=
- uses: DeterminateSystems/magic-nix-cache-action@v14
- uses: actions/cache@v5
with:
path: dist-newstyle
key: ${{ runner.os }}-cabal-${{ hashFiles('**/*.cabal', 'cabal.project') }}
restore-keys: |
${{ runner.os }}-cabal-
- name: Build the project with cabal
run: nix develop --command cabal build all --disable-documentation
- uses: actions/upload-artifact@v7
with:
name: dist-newstyle
path: dist-newstyle
compression-level: 0
retention-days: 1
if-no-files-found: error
test-core:
needs: [build]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: DeterminateSystems/determinate-nix-action@v3.21.2
with:
extra-conf: |
accept-flake-config = true
extra-substituters = https://cache.iog.io https://neohaskell.cachix.org
extra-trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= neohaskell.cachix.org-1:mo2cLaGbwqbrxs9xhqKK8jeNsn3osi7t6XoAmxSZssc=
- uses: DeterminateSystems/magic-nix-cache-action@v14
- uses: actions/download-artifact@v8
with:
name: dist-newstyle
path: dist-newstyle
- name: Run nhcore-test-core
run: LOG_LEVEL=Warn nix develop --command cabal test nhcore-test-core
test-auth:
needs: [build]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: DeterminateSystems/determinate-nix-action@v3.21.2
with:
extra-conf: |
accept-flake-config = true
extra-substituters = https://cache.iog.io https://neohaskell.cachix.org
extra-trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= neohaskell.cachix.org-1:mo2cLaGbwqbrxs9xhqKK8jeNsn3osi7t6XoAmxSZssc=
- uses: DeterminateSystems/magic-nix-cache-action@v14
- uses: actions/download-artifact@v8
with:
name: dist-newstyle
path: dist-newstyle
- name: Run nhcore-test-auth
run: LOG_LEVEL=Warn nix develop --command cabal test nhcore-test-auth
test-integration:
needs: [build]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: DeterminateSystems/determinate-nix-action@v3.21.2
with:
extra-conf: |
accept-flake-config = true
extra-substituters = https://cache.iog.io https://neohaskell.cachix.org
extra-trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= neohaskell.cachix.org-1:mo2cLaGbwqbrxs9xhqKK8jeNsn3osi7t6XoAmxSZssc=
- uses: DeterminateSystems/magic-nix-cache-action@v14
- uses: actions/download-artifact@v8
with:
name: dist-newstyle
path: dist-newstyle
- name: Run nhcore-test-integration
run: LOG_LEVEL=Warn nix develop --command cabal test nhcore-test-integration
test-service:
needs: [build]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: DeterminateSystems/determinate-nix-action@v3.21.2
with:
extra-conf: |
accept-flake-config = true
extra-substituters = https://cache.iog.io https://neohaskell.cachix.org
extra-trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= neohaskell.cachix.org-1:mo2cLaGbwqbrxs9xhqKK8jeNsn3osi7t6XoAmxSZssc=
- uses: DeterminateSystems/magic-nix-cache-action@v14
- uses: actions/download-artifact@v8
with:
name: dist-newstyle
path: dist-newstyle
- name: Start PostgreSQL
run: |
docker run -d --name neohaskell_postgres \
-e POSTGRES_USER=neohaskell \
-e POSTGRES_PASSWORD=neohaskell \
-e POSTGRES_DB=neohaskell \
-p 5432:5432 \
postgres:16-alpine \
postgres -c max_connections=200
for i in $(seq 1 30); do
pg_isready -h 127.0.0.1 -U neohaskell && break || sleep 1
done
if ! pg_isready -h 127.0.0.1 -U neohaskell; then
echo "::error::PostgreSQL failed to start within 30 seconds"
exit 1
fi
env:
PGPASSWORD: neohaskell
- name: Run nhcore-test-service
run: LOG_LEVEL=Warn nix develop --command cabal test nhcore-test-service
test-hurl:
needs: [build]
runs-on: ubuntu-latest
# 40m: the dev-shell entry pulls HLS / fourmolu / hlint / ormolu /
# stylish-haskell / floskell on cold magic-nix-cache, and the post-job
# cache upload step pushes those same paths back to GHA cache (~12m).
# Tests themselves run in ~8.5m, dev-shell pull ~5m, post-cache upload
# ~12m worst case. 40m absorbs the cold-cache one-time cost; warm-cache
# runs finish in ~10m total.
timeout-minutes: 40
steps:
- uses: actions/checkout@v7
- uses: DeterminateSystems/determinate-nix-action@v3.21.2
with:
extra-conf: |
accept-flake-config = true
extra-substituters = https://cache.iog.io https://neohaskell.cachix.org
extra-trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= neohaskell.cachix.org-1:mo2cLaGbwqbrxs9xhqKK8jeNsn3osi7t6XoAmxSZssc=
- uses: DeterminateSystems/magic-nix-cache-action@v14
- uses: actions/download-artifact@v8
with:
name: dist-newstyle
path: dist-newstyle
- name: Restore executable permissions
run: find dist-newstyle/build -type f -name 'nhtestbed' -exec chmod +x {} +
- name: Start PostgreSQL
run: |
docker run -d --name neohaskell_postgres \
-e POSTGRES_USER=neohaskell \
-e POSTGRES_PASSWORD=neohaskell \
-e POSTGRES_DB=neohaskell \
-p 5432:5432 \
postgres:16-alpine \
postgres -c max_connections=200
for i in $(seq 1 30); do
pg_isready -h 127.0.0.1 -U neohaskell && break || sleep 1
done
if ! pg_isready -h 127.0.0.1 -U neohaskell; then
echo "::error::PostgreSQL failed to start within 30 seconds"
exit 1
fi
env:
PGPASSWORD: neohaskell
- name: Install hurl
run: |
curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/6.0.0/hurl_6.0.0_amd64.deb
sudo dpkg -i hurl_6.0.0_amd64.deb
- name: Install poppler-utils (for PDF extraction tests)
run: sudo apt-get update && sudo apt-get install -y poppler-utils
- name: Run integration tests
run: nix develop --command ./testbed/scripts/run-tests.sh
ci-gate:
if: always()
needs: [test-core, test-auth, test-integration, test-service, test-hurl]
runs-on: ubuntu-latest
steps:
- name: Check all tests passed
run: |
results=(
"${{ needs.test-core.result }}"
"${{ needs.test-auth.result }}"
"${{ needs.test-integration.result }}"
"${{ needs.test-service.result }}"
"${{ needs.test-hurl.result }}"
)
for r in "${results[@]}"; do
if [[ "$r" != "success" ]]; then
echo "::error::Test job failed with result: $r"
exit 1
fi
done