File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
containers/github-action-ci-windows Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
jobs :
21
21
build-ci-container-windows :
22
22
if : github.repository_owner == 'llvm'
23
- runs-on : windows-2019
23
+ runs-on : windows-2022
24
24
outputs :
25
25
container-name : ${{ steps.vars.outputs.container-name }}
26
26
container-name-tag : ${{ steps.vars.outputs.container-name-tag }}
34
34
id : vars
35
35
run : |
36
36
$tag = [int64](Get-Date -UFormat %s)
37
- $container_name="ghcr.io/$env:GITHUB_REPOSITORY_OWNER/ci-windows-2019 "
37
+ $container_name="ghcr.io/$env:GITHUB_REPOSITORY_OWNER/ci-windows-2022 "
38
38
echo "container-name=${container_name}" >> $env:GITHUB_OUTPUT
39
39
echo "container-name-tag=${container_name}:${tag}" >> $env:GITHUB_OUTPUT
40
40
echo "container-filename=ci-windows-${tag}.tar" >> $env:GITHUB_OUTPUT
58
58
- build-ci-container-windows
59
59
permissions :
60
60
packages : write
61
- runs-on : windows-2019
61
+ runs-on : windows-2022
62
62
env :
63
63
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
64
64
steps :
Original file line number Diff line number Diff line change 1
1
# Agent image for LLVM org cluster.
2
2
# .net 4.8 is required by chocolately package manager.
3
- FROM mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019
3
+ FROM mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022
4
4
5
5
# Restore the default Windows shell for correct batch processing.
6
6
SHELL ["cmd" , "/S" , "/C" ]
You can’t perform that action at this time.
0 commit comments