File tree 1 file changed +8
-13
lines changed
1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ jobs:
23
23
strategy :
24
24
fail-fast : false
25
25
matrix :
26
- os : [ubuntu-latest , macos-latest]
26
+ os : [ubuntu-20.04 , macos-latest]
27
27
config : [Debug, Release]
28
28
include :
29
- - os : macos-lates
29
+ - os : macos-latest
30
30
name : macOS
31
- - os : ubuntu-latest
32
- name : Ubunutu
31
+ - os : ubuntu-20.04
32
+ name : Linux
33
33
steps :
34
34
- name : Checkout repository
35
- uses : actions/checkout@v1
35
+ uses : actions/checkout@v3
36
36
with :
37
37
fetch-depth : 10
38
38
@@ -86,16 +86,10 @@ jobs:
86
86
strategy :
87
87
fail-fast : false
88
88
matrix :
89
- os : [windows-2019, windows-2022]
90
89
config : [Debug, Release]
91
- include :
92
- - os : windows-2019
93
- name : Windows 2019
94
- - os : windows-2022
95
- name : Windows 2022
96
90
steps :
97
91
- name : Checkout repository
98
- uses : actions/checkout@v1
92
+ uses : actions/checkout@v3
99
93
with :
100
94
fetch-depth : 10
101
95
- uses : seanmiddleditch/gha-setup-ninja@master
@@ -115,7 +109,8 @@ jobs:
115
109
116
110
- name : Prepare sccache
117
111
run : |
118
- Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
112
+ iwr -useb 'https://raw.githubusercontent.com/scoopinstaller/install/master/install.ps1' -outfile 'install.ps1'
113
+ .\install.ps1 -RunAsAdmin
119
114
scoop install sccache --global
120
115
# Scoop modifies the PATH so we make it available for the next steps of the job
121
116
echo "${env:PATH}" >> ${env:GITHUB_PATH}
You can’t perform that action at this time.
0 commit comments