Skip to content

Commit f8a64d4

Browse files
committed
[CIR][NFC] Attempt to revive windows
1 parent 11b3ee0 commit f8a64d4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build-ci-container-windows.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ on:
1818
jobs:
1919
build-ci-container-windows:
2020
if: github.repository_owner == 'llvm'
21-
runs-on: windows-2019
21+
runs-on: windows-2022
2222
outputs:
2323
container-name: ${{ steps.vars.outputs.container-name }}
2424
container-name-tag: ${{ steps.vars.outputs.container-name-tag }}
2525
container-filename: ${{ steps.vars.outputs.container-filename }}
2626
steps:
2727
- name: Checkout LLVM
28-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
sparse-checkout: .github/workflows/containers/github-action-ci-windows
3131
- name: Write Variables
3232
id: vars
3333
run: |
3434
$tag = [int64](Get-Date -UFormat %s)
35-
$container_name="ghcr.io/$env:GITHUB_REPOSITORY_OWNER/ci-windows-2019"
35+
$container_name="ghcr.io/$env:GITHUB_REPOSITORY_OWNER/ci-windows-2022"
3636
echo "container-name=${container_name}" >> $env:GITHUB_OUTPUT
3737
echo "container-name-tag=${container_name}:${tag}" >> $env:GITHUB_OUTPUT
3838
echo "container-filename=ci-windows-${tag}.tar" >> $env:GITHUB_OUTPUT
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
docker save ${{ steps.vars.outputs.container-name-tag }} > ${{ steps.vars.outputs.container-filename }}
4646
- name: Upload container image
47-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
47+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
4848
with:
4949
name: container
5050
path: ${{ steps.vars.outputs.container-filename }}
@@ -56,12 +56,12 @@ jobs:
5656
- build-ci-container-windows
5757
permissions:
5858
packages: write
59-
runs-on: windows-2019
59+
runs-on: windows-2022
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6262
steps:
6363
- name: Download container
64-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
64+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
6565
with:
6666
name: container
6767
- name: Push Container

.github/workflows/clang-cir-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
build_target: check-clang-cir
3737
projects: clang;mlir
3838
extra_cmake_args: -DCLANG_ENABLE_CIR=ON
39-
os_list: '["ubuntu-24.04", "windows-2019", "macOS-13"]'
39+
os_list: '["ubuntu-24.04", "windows-2022", "macOS-13"]'

.github/workflows/llvm-project-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
required: false
1515
os_list:
1616
required: false
17-
default: '["ubuntu-24.04", "windows-2019", "macOS-13"]'
17+
default: '["ubuntu-24.04", "windows-2022", "macOS-13"]'
1818
python_version:
1919
required: false
2020
type: string
@@ -39,7 +39,7 @@ on:
3939
type: string
4040
# Use windows-2019 due to:
4141
# https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
42-
default: '["ubuntu-24.04", "windows-2019", "macOS-13"]'
42+
default: '["ubuntu-24.04", "windows-2022", "macOS-13"]'
4343

4444
python_version:
4545
required: false

0 commit comments

Comments
 (0)