File tree Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ jobs:
2323 strategy :
2424 fail-fast : false
2525 matrix :
26- os : [ubuntu-latest , macos-latest]
26+ os : [ubuntu-20.04 , macos-latest]
2727 config : [Debug, Release]
2828 include :
29- - os : macos-lates
29+ - os : macos-latest
3030 name : macOS
31- - os : ubuntu-latest
32- name : Ubunutu
31+ - os : ubuntu-20.04
32+ name : Linux
3333 steps :
3434 - name : Checkout repository
35- uses : actions/checkout@v1
35+ uses : actions/checkout@v3
3636 with :
3737 fetch-depth : 10
3838
@@ -86,16 +86,10 @@ jobs:
8686 strategy :
8787 fail-fast : false
8888 matrix :
89- os : [windows-2019, windows-2022]
9089 config : [Debug, Release]
91- include :
92- - os : windows-2019
93- name : Windows 2019
94- - os : windows-2022
95- name : Windows 2022
9690 steps :
9791 - name : Checkout repository
98- uses : actions/checkout@v1
92+ uses : actions/checkout@v3
9993 with :
10094 fetch-depth : 10
10195 - uses : seanmiddleditch/gha-setup-ninja@master
@@ -115,7 +109,8 @@ jobs:
115109
116110 - name : Prepare sccache
117111 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
119114 scoop install sccache --global
120115 # Scoop modifies the PATH so we make it available for the next steps of the job
121116 echo "${env:PATH}" >> ${env:GITHUB_PATH}
You can’t perform that action at this time.
0 commit comments