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 18
18
jobs :
19
19
build-ci-container-windows :
20
20
if : github.repository_owner == 'llvm'
21
- runs-on : windows-2022
21
+ runs-on : windows-2019
22
22
outputs :
23
23
container-name : ${{ steps.vars.outputs.container-name }}
24
24
container-name-tag : ${{ steps.vars.outputs.container-name-tag }}
32
32
id : vars
33
33
run : |
34
34
$tag = [int64](Get-Date -UFormat %s)
35
- $container_name="ghcr.io/$env:GITHUB_REPOSITORY_OWNER/ci-windows-2022 "
35
+ $container_name="ghcr.io/$env:GITHUB_REPOSITORY_OWNER/ci-windows-2019 "
36
36
echo "container-name=${container_name}" >> $env:GITHUB_OUTPUT
37
37
echo "container-name-tag=${container_name}:${tag}" >> $env:GITHUB_OUTPUT
38
38
echo "container-filename=ci-windows-${tag}.tar" >> $env:GITHUB_OUTPUT
56
56
- build-ci-container-windows
57
57
permissions :
58
58
packages : write
59
- runs-on : windows-2022
59
+ runs-on : windows-2019
60
60
env :
61
61
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
62
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-ltsc2022
3
+ FROM mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019
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