-
Notifications
You must be signed in to change notification settings - Fork 1
345 lines (325 loc) · 11.6 KB
/
main.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
name: Tests
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: main-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env:
NPM_CONFIG_AUDIT: "false"
NPM_CONFIG_FUND: "false"
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Run tsc
run: npm run build
- name: Run fmt check
run: npm run fmt-check
- name: Run lint check
run: npm run lint
audit:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- run: npm install
- run: npm audit --audit-level moderate --omit dev
test-defaults:
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
test-declare-inputs:
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
with:
drive-size: 2GB
drive-format: NTFS
drive-type: Fixed
drive-path: "my_awesome_drive.vhdx"
mount-path: ""
mount-if-exists: false
workspace-copy: true
native-dev-drive: false
env-mapping: ''
test-formats:
strategy:
fail-fast: false
matrix:
drive-format: [ FAT, FAT32, exFAT, NTFS, ReFS ]
with-mount-path: [ true, false ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
with:
drive-format: ${{ matrix.drive-format }}
# This should fall back to Drive Letter on unsupported drive formats.
mount-path: ${{ matrix.with-mount-path && 'mount' || '' }}
test-large-size:
strategy:
fail-fast: false
matrix:
drive-type: [ Fixed, Dynamic ]
with-mount-path: [ true, false ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
id: setup-drive
uses: ./
with:
drive-size: 10GB
drive-type: ${{ matrix.drive-type }}
mount-path: ${{ matrix.with-mount-path && 'mount' || '' }}
test-paths-with-spaces:
strategy:
fail-fast: false
matrix:
with-mount-path: [ true, false ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
with:
drive-size: 50MB
drive-format: NTFS
drive-path: "path/to/my/dev drive with spaces.vhdx"
mount-path: ${{ matrix.with-mount-path && 'my mount/location/with spaces' || '' }}
- name: Write File to Dev Drive
working-directory: ${{ env.DEV_DRIVE }}
run: New-Item test.txt
test-mount-path:
strategy:
fail-fast: false
matrix:
is-relative: [ true, false ]
drive-format: [ ReFS, NTFS ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
with:
drive-format: ${{ matrix.drive-format }}
mount-path: ${{ matrix.is-relative && 'mount' || format('{0}/mount', github.workspace) }}
- name: Write File to Dev Drive
working-directory: ${{ env.DEV_DRIVE }}
run: |
New-Item test.txt
test-workspace-copy:
strategy:
fail-fast: false
matrix:
with-mount-path: [ true, false ]
workspace-copy: [ true ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
id: setup-drive
uses: ./
with:
mount-path: ${{ matrix.with-mount-path && format('{0}/../mount', github.workspace) || '' }}
workspace-copy: ${{ matrix.workspace-copy }}
- name: Check workspace was copied
working-directory: ${{ env.DEV_DRIVE_WORKSPACE }}
run: |
Get-ChildItem -Force
if (-not $env:DEV_DRIVE_WORKSPACE) {
exit 1
}
if (-not (Test-Path -Path action.yml -PathType Leaf)) {
exit 1
}
test-workspace-copy-edge-cases:
strategy:
fail-fast: false
matrix:
with-mount-path: [ true, false ]
workspace-copy: [ true, false ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
id: setup-drive
continue-on-error: true
uses: ./
with:
drive-path: "${{ github.workspace }}/dev_drive.vhdx"
mount-path: ${{ matrix.with-mount-path && format('{0}/mount', github.workspace) || '' }}
workspace-copy: ${{ matrix.workspace-copy }}
# Dev Drive Location
- name: Check dev drive is inside GitHub workspace
run: |
Get-ChildItem -Force
if (-not (Test-Path -Path dev_drive.vhdx -PathType Leaf)) {
exit 1
}
- name: Check workspace was copied, filtering the dev drive
if: ${{ !matrix.with-mount-path && matrix.workspace-copy }}
working-directory: ${{ env.DEV_DRIVE_WORKSPACE }}
run: |
Get-ChildItem -Force
if (-not $env:DEV_DRIVE_WORKSPACE) {
exit 1
}
if (Test-Path -Path dev_drive.vhdx -PathType Leaf) {
exit 1
}
if (-not (Test-Path -Path action.yml -PathType Leaf)) {
exit 1
}
# Drive Letter (with Dev Drive inside workspace)
- name: Fail when `workspace-copy` and success is not the outcome when drive letter is being used
if: ${{ !matrix.with-mount-path && matrix.workspace-copy && steps.setup-drive.outcome != 'success' }}
run: exit 1
- name: Fail when not `workspace-copy` and success is not the outcome when drive letter is being used
if: ${{ !matrix.with-mount-path && !matrix.workspace-copy && steps.setup-drive.outcome != 'success' }}
run: exit 1
# Mount Path (with mount inside workspace)
- name: Fail when `workspace-copy` and failure is not the outcome when mount path is inside workspace
if: ${{ matrix.with-mount-path && matrix.workspace-copy && steps.setup-drive.outcome != 'failure' }}
run: exit 1
- name: Fail when not `workspace-copy` and success is not the outcome when mount path inside workspace
if: ${{ matrix.with-mount-path && !matrix.workspace-copy && steps.setup-drive.outcome != 'success' }}
run: exit 1
test-unsupported-os:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
test-legacy-runners:
runs-on: windows-2019
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
id: setup-drive
continue-on-error: true
uses: ./
- name: Fail when failure is not the outcome
if: steps.setup-drive.outcome != 'failure'
run: exit 1
test-cache-storage:
strategy:
fail-fast: false
matrix:
with-mount-path: [ true, false ]
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
with:
drive-size: 50MB
drive-format: NTFS
drive-path: "my_cached_drive.vhdx"
mount-path: ${{ matrix.with-mount-path && format('{0}/mount', github.workspace) || '' }}
mount-if-exists: true
- name: Write File to Dev Drive
working-directory: ${{ env.DEV_DRIVE }}
# Dismount so we can always force-cache the disk via actions/cache/save
run: |
New-Item test.txt
Dismount-VHD -Path ${{ env.DEV_DRIVE_PATH }}
- name: Cache Dev Drive
uses: actions/cache/save@v4
with:
path: ${{ env.DEV_DRIVE_PATH }}
key: ${{ matrix.with-mount-path && format('test-cache-mount-path-{0}', github.run_id) || format('test-cache-drive-letter-{0}', github.run_id) }}
outputs:
dev-drive-path: ${{ env.DEV_DRIVE_PATH }}
test-cache-retrieval:
strategy:
fail-fast: false
matrix:
with-mount-path: [ true, false ]
runs-on: windows-2022
needs: [test-cache-storage]
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Retrieve Cached Dev Drive
uses: actions/cache/restore@v4
with:
path: ${{ needs.test-cache-storage.outputs.dev-drive-path }}
key: ${{ matrix.with-mount-path && format('test-cache-mount-path-{0}', github.run_id) || format('test-cache-drive-letter-{0}', github.run_id) }}
fail-on-cache-miss: true
- name: Setup Dev Drive
uses: ./
with:
drive-path: "my_cached_drive.vhdx"
mount-path: ${{ matrix.with-mount-path && format('{0}/mount', github.workspace) || '' }}
mount-if-exists: true
- name: Check File in Dev Drive
working-directory: ${{ env.DEV_DRIVE }}
run: |
Get-ChildItem -Force
if (-not (Test-Path -Path test.txt -PathType Leaf)) {
exit 1
}
test-env-mapping:
runs-on: windows-2022
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Setup Dev Drive
uses: ./
with:
workspace-copy: true
env-mapping: |
CARGO_HOME,{{ DEV_DRIVE }}/.cargo
RUSTUP_HOME,{{ DEV_DRIVE }}/.rustup
MY_ENV_VAR , {{ DEV_DRIVE_PATH }}
MY_OTHER_ENV_VAR,{{ DEV_DRIVE_WORKSPACE }}\other\path
SHOULD_WARN,
should_also_warn,about_template
invalid-env-var,???
invalid.env.var,!!!
ENV_VAR_VALUE_INCLUDES_COMMAS,{{ DEV_DRIVE}}/my file name, with commas.txt
a
,
42,{{ DEV_DRIVE }}/42
does_it_substitute_1137,{{ DEV_DRIVE }}/$DEV_DRIVE
- name: Verify Env Mapping
run: |
if ($Env:CARGO_HOME -ne '${{ env.DEV_DRIVE }}/.cargo') { Write-Error 'Failed CARGO_HOME'; exit 1 }
if ($Env:RUSTUP_HOME -ne '${{ env.DEV_DRIVE }}/.rustup') { Write-Error 'Failed RUSTUP_HOME'; exit 1 }
if ($Env:MY_ENV_VAR -ne '${{ env.DEV_DRIVE_PATH }}') { Write-Error 'Failed MY_ENV_VAR'; exit 1 }
if ($Env:MY_OTHER_ENV_VAR -ne '${{ env.DEV_DRIVE_WORKSPACE }}\other\path') { Write-Error 'Failed MY_OTHER_ENV_VAR'; exit 1 }
if ($Env:SHOULD_WARN -ne $null) { Write-Error 'Failed SHOULD_WARN'; exit 1 }
if ($Env:should_also_warn -ne $null) { Write-Error 'Failed should_also_warn'; exit 1 }
if (${Env:invalid-env-var} -ne $null) { Write-Error 'Failed invalid-env-var'; exit 1 }
if (${Env:invalid.env.var} -ne $null) { Write-Error 'Failed invalid.env.var'; exit 1 }
if ($Env:ENV_VAR_VALUE_INCLUDES_COMMAS -ne '${{ env.DEV_DRIVE }}/my file name, with commas.txt') { Write-Error 'Failed ENV_VAR_VALUE_INCLUDES_COMMAS'; exit 1 }
if ($Env:a -ne $null) { Write-Error 'Failed a'; exit 1 }
if (${Env:,} -ne $null) { Write-Error 'Failed ,'; exit 1 }
if (${Env:42} -ne $null) { Write-Error 'Failed 42'; exit 1 }
if ($Env:does_it_substitute_1137 -ne '${{ env.DEV_DRIVE }}/$DEV_DRIVE') { Write-Error 'Failed does_it_substitute_1137'; exit 1 }