-
Notifications
You must be signed in to change notification settings - Fork 212
37 lines (36 loc) · 1.24 KB
/
validate-windows-binary-signature.yaml
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
name: Windows Files and Images Check
on:
pull_request:
paths:
- '.github/workflows/validate-windows-binary-signature.yaml'
- 'vhdbuilder/packer/test/windows-files-check.ps1'
- 'vhdbuilder/packer/generate-windows-vhd-configuration.ps1'
jobs:
check-files-for-ws2019:
name: Check Windows Files and Images
runs-on: windows-2019
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Geneate windows vhd configuration
shell: powershell
run: |
./vhdbuilder/packer/generate-windows-vhd-configuration.ps1
- name: Run check script for 2019-containerd
shell: powershell
run: |
./vhdbuilder/packer/test/windows-files-check.ps1 2019-containerd
check-files-for-ws2022:
name: Check Windows Files and Images
runs-on: windows-2022
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Geneate windows vhd configuration
shell: powershell
run: |
./vhdbuilder/packer/generate-windows-vhd-configuration.ps1
- name: Run check script for 2022-containerd
shell: powershell
run: |
./vhdbuilder/packer/test/windows-files-check.ps1 2022-containerd