-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 1010 Bytes
/
windows.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
name: Run initPC on ${{ matrix.os }}
on:
push:
branches: [ "devel", "testing", "stable", "minimal" ]
paths:
- 'CommonInitScripts/*.ps1'
- '.github/workflows/windows.yml'
- 'Windows_10/*.ps1'
pull_request:
branches: [ "devel", "testing", "stable", "minimal" ]
paths:
- 'CommonInitScripts/*.ps1'
- '.github/workflows/windows.yml'
- 'Windows_10/*.ps1'
jobs:
build:
name: Run initPC on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [windows-latest, windows-2019]
steps:
- name: "checkout repo"
uses: actions/checkout@v4
- name: "Install `winget`"
shell: powershell
run: choco install winget
- name: "Run `packages_install.ps1` separatelly (so that it does not pollute logs)"
shell: powershell
run: .\Windows_10\packages_install.ps1
- name: "Run `run_all.ps1`"
shell: powershell
run: .\Windows_10\run_all.ps1