Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyd2019 committed Feb 20, 2025
2 parents 5d701d2 + de2a6ca commit b40ebfa
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 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';
28 changes: 25 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,30 @@ on:
# - cron: '0 3 * * *'

concurrency: nope
permissions:
contents: read

jobs:
zizmor:
runs-on: ubuntu-24.04

permissions:
contents: read
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Run zizmor
run: pipx run zizmor .
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build-installer:
runs-on: windows-2022
runs-on: windows-2025
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -70,7 +90,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,6 +128,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# FIXME: https://github.com/actions/runner-images/issues/11582
image: [2019, 2022]
steps:
- name: Checkout code
Expand Down Expand Up @@ -143,7 +164,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 @@ -178,6 +199,7 @@ jobs:
permissions:
contents: write
needs:
- zizmor
- test-docker-sfx
- test-installer
- test-sfx
Expand Down

0 comments on commit b40ebfa

Please sign in to comment.