Skip to content

Commit

Permalink
CI: build and test with windows-2025
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Dec 19, 2024
1 parent 3cf8b7e commit 84dfd74
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .ci/Dockerfile.2025
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM mcr.microsoft.com/windows/servercore:ltsc2025

COPY ./msys2-base-x86_64-latest.sfx.exe /msys2.exe

RUN powershell -Command \
$ErrorActionPreference = 'Stop'; \
$ProgressPreference = 'SilentlyContinue'; \
/msys2.exe -y -oC:\; \
function msys() { C:\msys64\usr\bin\bash.exe @('-lc') + @Args; } \
msys ' '; \
msys 'pacman --noconfirm -Syuu'; \
msys 'pacman --noconfirm -Syuu'; \
msys 'pacman --noconfirm -Scc';
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency: nope

jobs:
build-installer:
runs-on: windows-2022
runs-on: windows-2025
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: [2019, 2022]
image: [2019, 2022, 2025]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: [2019, 2022]
image: [2019, 2022, 2025]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: [2019, 2022]
image: [2019, 2022, 2025]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit 84dfd74

Please sign in to comment.