Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@ jobs:
matrix:
include:
- MINGW_ARCH: "mingw32"
RUNON: windows-latest
- MINGW_ARCH: "mingw64"
RUNON: windows-latest
- MINGW_ARCH: "ucrt64"
# clangarm64 runs on native arm64 only, not on github CI:
# - MINGW_ARCH: "clangarm64"
RUNON: windows-latest
- MINGW_ARCH: "clangarm64"
RUNON: windows-11-arm

runs-on: windows-latest
runs-on: ${{ matrix.RUNON }}
env:
MINGW_ARCH: ${{ matrix.MINGW_ARCH }}
APPVEYOR_SCHEDULED_BUILD: ${{ github.event.schedule }}
Expand Down Expand Up @@ -49,10 +52,10 @@ jobs:
shell: powershell
# See https://github.com/msys2/MSYS2-packages/issues/258
run: |
C:\msys64\usr\bin\rm -rf $env:MINGW_PREFIX/bin/libcrypto-3-x64.dll $env:MINGW_PREFIX/bin/libssl-3-x64.dll $env:MINGW_PREFIX/etc/ssl/openssl.cnf
C:\msys64\usr\bin\pacman --noconfirm --ask 20 --sync --refresh --refresh --sysupgrade --sysupgrade
Get-Process | Where-Object {$_.path -like 'C:\msys64*'} | Stop-Process
C:\msys64\usr\bin\pacman --noconfirm --sync --refresh --refresh --sysupgrade --sysupgrade
iex "${env:RI_DEVKIT}/usr/bin/rm -rf $env:MINGW_PREFIX/bin/libcrypto-3-x64.dll $env:MINGW_PREFIX/bin/libssl-3-x64.dll $env:MINGW_PREFIX/etc/ssl/openssl.cnf"
Copy link
Contributor

@ntkme ntkme May 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure what's the reason that we need to remove these two files given that all openssl-1.1 based rubies are EOL. Also the filename in arm64 do not have -x64.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was due to 619d090 . Now it's pretty sure outdated.

iex "${env:RI_DEVKIT}/usr/bin/pacman --noconfirm --ask 20 --sync --refresh --refresh --sysupgrade --sysupgrade"
Get-Process | Where-Object {$_.path -like ($env:RI_DEVKIT + '*')} | Stop-Process
iex "${env:RI_DEVKIT}/usr/bin/pacman --noconfirm --sync --refresh --refresh --sysupgrade --sysupgrade"

- name: Print version info
shell: cmd
Expand All @@ -64,7 +67,7 @@ jobs:
shell: cmd
env:
GPGPASSWD: ${{ secrets.GPGPASSWD }}
run: C:\msys64\usr\bin\bash --login -c "$(cygpath ${GITHUB_WORKSPACE})/ci-build.sh"
run: '%RI_DEVKIT%/usr/bin/bash --login -c "$(cygpath ${GITHUB_WORKSPACE})/ci-build.sh"'

- name: Create lock ID
shell: cmd
Expand Down
2 changes: 1 addition & 1 deletion mingw-w64-ruby-head/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_realname=ruby
pkgbase=mingw-w64-ruby-head
pkgname="${MINGW_PACKAGE_PREFIX}-ruby-head"
pkgver=r20250514
pkgver=r20250602
pkgver() {
echo r`date +%Y%m%d`
}
Expand Down