Skip to content

Commit 31d8fa4

Browse files
committed
MinGW 2.4 - use OpenSSL 1.0.2u zst file
1 parent a9b473a commit 31d8fa4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ruby.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
fail-fast: false
4545
matrix:
4646
os: [ windows ]
47-
# ruby: [ ruby-head, mingw, mswin, 2.4, 2.2 ]
4847
ruby: [ mswin, mingw, 2.5, 2.4, 2.3, 2.2 ]
4948
runs-on: ${{ matrix.os }}-latest
5049
steps:

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,8 @@ const openssl = async () => {
546546
})
547547

548548
if (ruby.abiVers === '2.4.0') {
549-
const uri = `https://dl.bintray.com/larskanis/rubyinstaller2-packages/${pre.trim()}openssl-1.0.2.t-1-any.pkg.tar.xz`
550-
const fn = `${dlPath}\\ri2.tar.xz`
549+
const uri = `https://dl.bintray.com/larskanis/rubyinstaller2-packages/${pre.trim()}openssl-1.0.2.u-1-any.pkg.tar.zst`
550+
const fn = `${dlPath}\\ri2.tar.zst`
551551
await download(uri, fn)
552552
execSync(`pacman.exe -R --noconfirm --noprogressbar ${pre.trim()}openssl`)
553553
execSync(`pacman.exe -Udd --noconfirm --noprogressbar ${fn}`)

mingw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const openssl = async () => {
7070
})
7171

7272
if (ruby.abiVers === '2.4.0') {
73-
const uri = `https://dl.bintray.com/larskanis/rubyinstaller2-packages/${pre.trim()}openssl-1.0.2.t-1-any.pkg.tar.xz`
74-
const fn = `${dlPath}\\ri2.tar.xz`
73+
const uri = `https://dl.bintray.com/larskanis/rubyinstaller2-packages/${pre.trim()}openssl-1.0.2.u-1-any.pkg.tar.zst`
74+
const fn = `${dlPath}\\ri2.tar.zst`
7575
await download(uri, fn)
7676
execSync(`pacman.exe -R --noconfirm --noprogressbar ${pre.trim()}openssl`)
7777
execSync(`pacman.exe -Udd --noconfirm --noprogressbar ${fn}`)

0 commit comments

Comments
 (0)