mirror of
https://github.com/ruby/setup-ruby.git
synced 2026-09-13 14:34:21 +02:00
Rewrite ruby/setup-msys2-gcc
This commit is contained in:
@@ -134,7 +134,7 @@ jobs:
|
||||
echo 'ridk is unavailable'
|
||||
}
|
||||
} elseif ($plat.Contains('mswin')) {
|
||||
&"$env:VCPKG_INSTALLATION_ROOT\vcpkg" list
|
||||
Get-ChildItem "$env:VCPKG_INSTALLATION_ROOT\installed\vcpkg\info"
|
||||
}
|
||||
- name: RbConfig::CONFIG
|
||||
run: ruby -rrbconfig -rpp -e 'pp RbConfig::CONFIG'
|
||||
|
||||
@@ -12,7 +12,7 @@ const linuxOSInfo = require('linux-os-info')
|
||||
|
||||
export const windows = (os.platform() === 'win32')
|
||||
// Extract to SSD on Windows, see https://github.com/ruby/setup-ruby/pull/14
|
||||
export const drive = (windows ? (process.env['GITHUB_WORKSPACE'] || 'C')[0] : undefined)
|
||||
export const drive = (windows ? (process.env['RUNNER_TEMP'] || 'C')[0] : undefined)
|
||||
|
||||
export const inputs = {
|
||||
selfHosted: undefined
|
||||
@@ -334,7 +334,7 @@ function engineToToolCacheName(engine) {
|
||||
}[engine]
|
||||
}
|
||||
|
||||
export function getToolCacheRubyPrefix(platform, engine, version) {
|
||||
export function getToolCacheRubyPrefix(_platform, engine, version) {
|
||||
const toolCache = getToolCachePath()
|
||||
return path.join(toolCache, engineToToolCacheName(engine), version, os.arch())
|
||||
}
|
||||
@@ -356,15 +356,7 @@ export function win2nix(path) {
|
||||
return path.replace(/\\/g, '/').replace(/ /g, '\\ ')
|
||||
}
|
||||
|
||||
// JRuby is installed after setupPath is called, so folder doesn't exist
|
||||
function rubyIsUCRT(path) {
|
||||
return !!(fs.existsSync(path) &&
|
||||
fs.readdirSync(path, { withFileTypes: true }).find(dirent =>
|
||||
dirent.isFile() && dirent.name.match(/^x64-(ucrt|vcruntime\d{3})-ruby\d{3}\.dll$/)))
|
||||
}
|
||||
|
||||
export function setupPath(newPathEntries) {
|
||||
let msys2Type = null
|
||||
const envPath = windows ? 'Path' : 'PATH'
|
||||
const originalPath = process.env[envPath].split(path.delimiter)
|
||||
let cleanPath = originalPath.filter(entry => !/\bruby\b/i.test(entry))
|
||||
@@ -382,29 +374,13 @@ export function setupPath(newPathEntries) {
|
||||
core.exportVariable(envPath, cleanPath.join(path.delimiter))
|
||||
}
|
||||
|
||||
// Then add new path entries using core.addPath()
|
||||
let newPath
|
||||
const windowsToolchain = core.getInput('windows-toolchain')
|
||||
if (windows && windowsToolchain !== 'none') {
|
||||
// main Ruby dll determines whether mingw or ucrt build
|
||||
msys2Type = os.arch() === 'arm64'
|
||||
? 'clangarm64'
|
||||
: rubyIsUCRT(newPathEntries[0]) ? 'ucrt64' : 'mingw64'
|
||||
|
||||
// add MSYS2 in path for all Rubies on Windows, as it provides a better bash shell and a native toolchain
|
||||
const msys2 = [`C:\\msys64\\${msys2Type}\\bin`, 'C:\\msys64\\usr\\bin']
|
||||
newPath = [...newPathEntries, ...msys2]
|
||||
} else {
|
||||
newPath = newPathEntries
|
||||
}
|
||||
console.log(`Entries added to ${envPath} to use selected Ruby:`)
|
||||
for (const entry of newPath) {
|
||||
for (const entry of newPathEntries) {
|
||||
console.log(` ${entry}`)
|
||||
}
|
||||
core.endGroup()
|
||||
|
||||
core.addPath(newPath.join(path.delimiter))
|
||||
return msys2Type
|
||||
core.addPath(newPathEntries.join(path.delimiter))
|
||||
}
|
||||
|
||||
export async function setupJavaHome(rubyPrefix) {
|
||||
|
||||
+155
-239
File diff suppressed because one or more lines are too long
@@ -1,11 +1,11 @@
|
||||
require 'net/http'
|
||||
require 'open-uri'
|
||||
require 'yaml'
|
||||
require 'json'
|
||||
|
||||
min_requirements = ['~> 2.0.0', '~> 2.1.9', '>= 2.2.6'].map { |req| Gem::Requirement.new(req) }
|
||||
|
||||
url = 'https://raw.githubusercontent.com/oneclick/rubyinstaller.org-website/master/_data/downloads.yaml'
|
||||
entries = YAML.load(Net::HTTP.get(URI(url)), symbolize_names: true)
|
||||
entries = YAML.load(URI.open(url) { |f| f.read }, symbolize_names: true)
|
||||
|
||||
versions = entries.select { |entry|
|
||||
entry[:filetype] == 'rubyinstaller7z' and
|
||||
@@ -31,18 +31,62 @@ versions = entries.select { |entry|
|
||||
min_requirements.any? { |req| req.satisfied_by?(Gem::Version.new(version)) }
|
||||
}.to_h
|
||||
|
||||
latest_version = Gem::Version.new(versions.keys.last)
|
||||
head_version = Gem::Version.new("#{latest_version.bump}.0dev")
|
||||
|
||||
versions['head'] = {
|
||||
'arm64': 'https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-arm.7z',
|
||||
'x64': 'https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-x64.7z'
|
||||
'arm64' => 'https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-arm.7z',
|
||||
'x64' => 'https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-head/rubyinstaller-head-x64.7z'
|
||||
}
|
||||
versions['mingw'] = {
|
||||
'x64': 'https://github.com/MSP-Greg/ruby-loco/releases/download/ruby-master/ruby-mingw.7z'
|
||||
'x64' => 'https://github.com/MSP-Greg/ruby-loco/releases/download/ruby-master/ruby-mingw.7z'
|
||||
}
|
||||
versions['mswin'] = {
|
||||
'x64': 'https://github.com/MSP-Greg/ruby-loco/releases/download/ruby-master/ruby-mswin.7z'
|
||||
'x64' => 'https://github.com/MSP-Greg/ruby-loco/releases/download/ruby-master/ruby-mswin.7z'
|
||||
}
|
||||
versions['ucrt'] = {
|
||||
'x64': 'https://github.com/MSP-Greg/ruby-loco/releases/download/ruby-master/ruby-ucrt.7z'
|
||||
'x64' => 'https://github.com/MSP-Greg/ruby-loco/releases/download/ruby-master/ruby-ucrt.7z'
|
||||
}
|
||||
|
||||
File.binwrite 'windows-versions.json', "#{JSON.pretty_generate(versions)}\n"
|
||||
|
||||
base_url = 'https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/windows-toolchain.json'
|
||||
windows_toolchain = JSON.parse(URI.open(base_url) { |f| f.read }, symbolize_names: true)
|
||||
|
||||
versions.each do |raw_version, archs|
|
||||
version = Gem::Version.correct?(raw_version) ? Gem::Version.new(raw_version) : head_version
|
||||
|
||||
archs.each_key do |raw_arch|
|
||||
arch = raw_arch == 'arm64' ? 'aarch64' : raw_arch
|
||||
|
||||
platform = case raw_version
|
||||
when 'head', 'ucrt'
|
||||
"#{arch}-mingw-ucrt"
|
||||
when 'mingw'
|
||||
"#{arch}-mingw32"
|
||||
when 'mswin'
|
||||
"#{arch}-mswin64"
|
||||
else
|
||||
if version >= Gem::Version.new('3.1.0.dev')
|
||||
"#{arch}-mingw-ucrt"
|
||||
else
|
||||
"#{arch}-mingw32"
|
||||
end
|
||||
end
|
||||
|
||||
toolchain = windows_toolchain
|
||||
.select do |pkg|
|
||||
pkg[:platform] == platform && pkg[:required_ruby_version].any? do |requirement|
|
||||
Gem::Requirement.new(requirement).satisfied_by?(version)
|
||||
end
|
||||
end
|
||||
|
||||
unless toolchain.one?
|
||||
raise "#{toolchain.empty? ? 'no' : 'multiple'} toolchains found for #{raw_version} #{raw_arch}: #{toolchain}"
|
||||
end
|
||||
|
||||
archs[raw_arch] = URI.join(base_url, toolchain.first[:href])
|
||||
end
|
||||
end
|
||||
|
||||
File.binwrite 'windows-toolchain-versions.json', "#{JSON.pretty_generate(versions)}\n"
|
||||
|
||||
@@ -70,13 +70,6 @@ export async function setupRuby(options = {}) {
|
||||
createGemRC(engine, version)
|
||||
envPreInstall()
|
||||
|
||||
// JRuby can use compiled extension code, so make sure gcc exists.
|
||||
// As of Jan-2022, JRuby compiles against msvcrt.
|
||||
if (platform.startsWith('windows') && engine === 'jruby' &&
|
||||
!fs.existsSync('C:\\msys64\\mingw64\\bin\\gcc.exe')) {
|
||||
await require('./windows').installJRubyTools()
|
||||
}
|
||||
|
||||
const rubyPrefix = await installer.install(platform, engine, version)
|
||||
|
||||
await common.measure('Print Ruby version', async () =>
|
||||
|
||||
+8
-1
@@ -46,8 +46,15 @@ export async function install(platform, engine, version) {
|
||||
rubyPrefix = path.join(os.homedir(), '.rubies', `${engine}-${version}`)
|
||||
}
|
||||
|
||||
const paths = [path.join(rubyPrefix, 'bin')]
|
||||
|
||||
// JRuby can use compiled extension code via ffi, so make sure gcc exists.
|
||||
if (platform.startsWith('windows') && engine === 'jruby') {
|
||||
paths.push(...await require('./windows').installJRubyTools())
|
||||
}
|
||||
|
||||
// Set the PATH now, so the MSYS2 'tar' is in Path on Windows
|
||||
common.setupPath([path.join(rubyPrefix, 'bin')])
|
||||
common.setupPath(paths)
|
||||
|
||||
if (!inToolCache) {
|
||||
await io.mkdirP(rubyPrefix)
|
||||
|
||||
@@ -0,0 +1,258 @@
|
||||
{
|
||||
"2.0.0": {
|
||||
"x64": "https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe"
|
||||
},
|
||||
"2.1.9": {
|
||||
"x64": "https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe"
|
||||
},
|
||||
"2.2.6": {
|
||||
"x64": "https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe"
|
||||
},
|
||||
"2.3.0": {
|
||||
"x64": "https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe"
|
||||
},
|
||||
"2.3.1": {
|
||||
"x64": "https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe"
|
||||
},
|
||||
"2.3.3": {
|
||||
"x64": "https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe"
|
||||
},
|
||||
"2.4.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.9": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.4.10": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.8": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.5.9": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.8": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.9": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.6.10": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"2.7.8": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.0.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.1.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14-openssl@1.1.7z"
|
||||
},
|
||||
"3.2.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.2.8": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.0": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.1": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.2": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.3": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.4": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.5": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.6": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.7": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.3.8": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.4.1": {
|
||||
"arm64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-clangarm64-mingw-w64@r688.7z",
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.4.2": {
|
||||
"arm64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-clangarm64-mingw-w64@r688.7z",
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"3.4.3": {
|
||||
"arm64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-clangarm64-mingw-w64@r688.7z",
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64-mingw-w64@r688-gcc@14.7z"
|
||||
},
|
||||
"head": {
|
||||
"arm64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-clangarm64.7z",
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64.7z"
|
||||
},
|
||||
"mingw": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-mingw64.7z"
|
||||
},
|
||||
"mswin": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/vcpkg-x64-windows.7z"
|
||||
},
|
||||
"ucrt": {
|
||||
"x64": "https://github.com/ntkme/setup-msys2-gcc/releases/latest/download/msys2-ucrt64.7z"
|
||||
}
|
||||
}
|
||||
+134
-201
@@ -1,42 +1,18 @@
|
||||
// 7z arguments
|
||||
// -aoa overwrite existing, -bd disable progress indicator
|
||||
|
||||
// OpenSSL version detection is needed in installGCCTools and installJRubyTools
|
||||
|
||||
const fs = require('fs')
|
||||
const os = require('os')
|
||||
const path = require('path')
|
||||
const cp = require('child_process')
|
||||
const core = require('@actions/core')
|
||||
const exec = require('@actions/exec')
|
||||
const io = require('@actions/io')
|
||||
const tc = require('@actions/tool-cache')
|
||||
const common = require('./common')
|
||||
const rubyInstallerVersions = require('./windows-versions.json')
|
||||
const toolchainVersions = require('./windows-toolchain-versions.json')
|
||||
|
||||
const drive = common.drive
|
||||
|
||||
const msys2GCCReleaseURI = 'https://github.com/ruby/setup-msys2-gcc/releases/download'
|
||||
|
||||
const msys2BasePath = process.env['GHCUP_MSYS2'] || 'C:\\msys64'
|
||||
const vcPkgBasePath = process.env['VCPKG_INSTALLATION_ROOT']
|
||||
|
||||
// needed for Ruby 2.0-2.3, cert file used by Git for Windows
|
||||
const certFile = [
|
||||
'C:\\Program Files\\Git\\mingw64\\etc\\ssl\\cert.pem',
|
||||
'C:\\Program Files\\Git\\mingw64\\ssl\\cert.pem',
|
||||
'C:\\Program Files\\Git\\clangarm64\\etc\\ssl\\cert.pem',
|
||||
'C:\\Program Files\\Git\\clangarm64\\ssl\\cert.pem'
|
||||
].find(file => fs.existsSync(file))
|
||||
if (certFile === undefined) {
|
||||
throw new Error("Cannot find Git's cert file")
|
||||
}
|
||||
|
||||
// location & path for old RubyInstaller DevKit (MSYS1), used with Ruby 2.0-2.3
|
||||
const msys1 = `${drive}:\\DevKit64`
|
||||
const msysPathEntries = [`${msys1}\\mingw\\x86_64-w64-mingw32\\bin`, `${msys1}\\mingw\\bin`, `${msys1}\\bin`]
|
||||
|
||||
export function getAvailableVersions(platform, engine) {
|
||||
export function getAvailableVersions(_platform, engine) {
|
||||
if (engine === 'ruby') {
|
||||
return Object.keys(rubyInstallerVersions).filter(version => os.arch() in rubyInstallerVersions[version])
|
||||
} else {
|
||||
@@ -47,14 +23,10 @@ export function getAvailableVersions(platform, engine) {
|
||||
export async function install(platform, engine, version) {
|
||||
const url = rubyInstallerVersions[version][os.arch()]
|
||||
|
||||
// The windows-2016 and windows-2019 images have MSYS2 build tools (C:/msys64/usr)
|
||||
// and MinGW build tools installed. The windows-2022 image has neither.
|
||||
const hasMSYS2PreInstalled = ['windows-2019', 'windows-2016'].includes(platform)
|
||||
|
||||
if (!url.endsWith('.7z')) {
|
||||
throw new Error(`URL should end in .7z: ${url}`)
|
||||
}
|
||||
const base = url.slice(url.lastIndexOf('/') + 1, url.length - '.7z'.length)
|
||||
const base = path.posix.basename(url, '.7z')
|
||||
|
||||
let rubyPrefix, inToolCache
|
||||
if (common.shouldUseToolCache(engine, version)) {
|
||||
@@ -65,121 +37,68 @@ export async function install(platform, engine, version) {
|
||||
rubyPrefix = common.getToolCacheRubyPrefix(platform, engine, version)
|
||||
}
|
||||
} else {
|
||||
rubyPrefix = `${drive}:\\${base}`
|
||||
rubyPrefix = `${common.drive}:\\${base}`
|
||||
}
|
||||
|
||||
if (!inToolCache) {
|
||||
await downloadAndExtract(engine, version, url, base, rubyPrefix);
|
||||
}
|
||||
|
||||
const paths = [`${rubyPrefix}\\bin`]
|
||||
const windowsToolchain = core.getInput('windows-toolchain')
|
||||
if (windowsToolchain === 'none') {
|
||||
common.setupPath([`${rubyPrefix}\\bin`])
|
||||
common.setupPath(paths)
|
||||
return rubyPrefix
|
||||
}
|
||||
|
||||
let toolchainPaths = (version === 'mswin') ? await setupMSWin() : await setupMingw(version)
|
||||
const msys2Type = common.setupPath([`${rubyPrefix}\\bin`, ...toolchainPaths])
|
||||
const toolchainUrl = toolchainVersions[version][os.arch()]
|
||||
|
||||
// install msys2 tools for all Ruby versions, only install mingw or ucrt for Rubies >= 2.4
|
||||
// Examples:
|
||||
// - DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe
|
||||
// - msys2-clangarm64.7z
|
||||
// - vcpkg-x64-windows.7z
|
||||
const toolchainName = path.posix.basename(toolchainUrl).split('-')[0].toLowerCase()
|
||||
|
||||
if (!hasMSYS2PreInstalled) {
|
||||
await installMSYS2Tools()
|
||||
if (toolchainName === 'msys2') {
|
||||
paths.push(...await installMSYS2(toolchainUrl, rubyPrefix))
|
||||
} else {
|
||||
if (toolchainName === 'vcpkg') {
|
||||
paths.push(...await installVCPKG(toolchainUrl))
|
||||
} else if (toolchainName === 'devkit') {
|
||||
paths.push(...await installMSYS1(toolchainUrl))
|
||||
} else {
|
||||
throw new Error(`Unknown toolchain type: ${toolchainUrl}`)
|
||||
}
|
||||
|
||||
// windows 2016 and 2019 need ucrt64 installed, 2022 and future images need
|
||||
// ucrt64 or mingw64 installed, depending on Ruby version
|
||||
if ((msys2Type === 'ucrt64') || (common.floatVersion(version) >= 2.4)) {
|
||||
await installGCCTools(msys2Type, version)
|
||||
}
|
||||
|
||||
if (version === 'mswin') {
|
||||
await installVCPkg()
|
||||
}
|
||||
|
||||
const ridk = `${rubyPrefix}\\bin\\ridk.cmd`
|
||||
if (fs.existsSync(ridk)) {
|
||||
await common.measure('Adding ridk env variables', async () => addRidkEnv(ridk))
|
||||
// Install msys2 for other rubies to provide better command line tools
|
||||
paths.push(...await installMSYS2(toolchainVersions['head'][os.arch()]))
|
||||
}
|
||||
|
||||
common.setupPath(paths)
|
||||
return rubyPrefix
|
||||
}
|
||||
|
||||
// Actions windows-2022 image does not contain any mingw or ucrt build tools. Install tools for it,
|
||||
// and also install ucrt tools on earlier versions, which have msys2 and mingw tools preinstalled.
|
||||
async function installGCCTools(type, version) {
|
||||
// 2022-Dec ruby/msys2-gcc-pkgs now uses a suffix to delineate different archive versions.
|
||||
// At present, the only use is to indicate the included OpenSSL version.
|
||||
// With no suffix, archives include OpenSSL 1.1.1, with a '-3.0' suffix, they include
|
||||
// OpenSSL 3.0.x. Note that the mswin archive uses OpenSSL 3.
|
||||
// As of Jan-2023, OpenSSL 3 is used in Ruby 3.2 & all head versions. MSYS2 updated
|
||||
// to OpenSSL 3 on 14-Jan-2023.
|
||||
let suffix = ''
|
||||
if (common.isHeadVersion(version) || common.floatVersion(version) >= 3.2) {
|
||||
suffix = '-3.0'
|
||||
}
|
||||
const downloadPath = await common.measure(`Downloading ${type}${suffix} build tools`, async () => {
|
||||
let url = `${msys2GCCReleaseURI}/msys2-gcc-pkgs/${type}${suffix}.7z`
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
await common.measure(`Extracting ${type}${suffix} build tools`, async () =>
|
||||
exec.exec('7z', ['x', downloadPath, '-aoa', '-bd', `-o${msys2BasePath}`], { silent: true }))
|
||||
}
|
||||
|
||||
// Actions windows-2022 image does not contain any MSYS2 build tools. Install tools for it.
|
||||
// A subset of the MSYS2 base-devel group
|
||||
async function installMSYS2Tools() {
|
||||
const downloadPath = await common.measure(`Downloading msys2 build tools`, async () => {
|
||||
const suffix = os.arch() === 'arm64' ? '-arm64' : ''
|
||||
|
||||
let url = `${msys2GCCReleaseURI}/msys2-gcc-pkgs/msys2${suffix}.7z`
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
// need to remove all directories, since they may indicate old packages are installed,
|
||||
// otherwise, error of "error: duplicated database entry"
|
||||
fs.rmSync(`${msys2BasePath}\\var\\lib\\pacman\\local`, { recursive: true, force: true })
|
||||
|
||||
await common.measure(`Extracting msys2 build tools`, async () =>
|
||||
exec.exec('7z', ['x', downloadPath, '-aoa', '-bd', `-o${msys2BasePath}`], { silent: true }))
|
||||
}
|
||||
|
||||
// Windows JRuby can install gems that require compile tools, only needed for
|
||||
// windows-2022 and later images
|
||||
export async function installJRubyTools() {
|
||||
await installMSYS2Tools()
|
||||
await installGCCTools(os.arch() === 'arm64' ? 'clangarm64' : 'mingw64', '3.4')
|
||||
}
|
||||
|
||||
// Install vcpkg files needed to build mswin Ruby
|
||||
async function installVCPkg() {
|
||||
const downloadPath = await common.measure(`Downloading mswin vcpkg packages`, async () => {
|
||||
let url = `${msys2GCCReleaseURI}/msys2-gcc-pkgs/mswin.7z`
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
await common.measure(`Extracting mswin vcpkg packages`, async () =>
|
||||
exec.exec('7z', ['x', downloadPath, '-aoa', '-bd', `-o${vcPkgBasePath}`], { silent: true }))
|
||||
}
|
||||
|
||||
async function downloadAndExtract(engine, version, url, base, rubyPrefix) {
|
||||
const parentDir = path.dirname(rubyPrefix)
|
||||
|
||||
const downloadPath = await common.measure('Downloading Ruby', async () => {
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
const extractPath = process.env.RUNNER_TEMP
|
||||
await common.measure('Extracting Ruby', async () =>
|
||||
// -xr extract but exclude share\doc files
|
||||
exec.exec('7z', ['x', downloadPath, '-bd', `-xr!${base}\\share\\doc`, `-o${parentDir}`], { silent: true }))
|
||||
exec.exec('7z', ['x', downloadPath, '-bd', `-xr!${base}\\share\\doc`, `-o${extractPath}`], { silent: true }))
|
||||
|
||||
if (base !== path.basename(rubyPrefix)) {
|
||||
await io.mv(path.join(parentDir, base), rubyPrefix)
|
||||
const parentDir = path.dirname(rubyPrefix)
|
||||
if (!fs.existsSync(parentDir)) {
|
||||
fs.mkdirSync(parentDir, { recursive: true })
|
||||
}
|
||||
|
||||
const extractedPath = path.join(extractPath, base)
|
||||
if (extractedPath[0] === rubyPrefix[0]) {
|
||||
fs.renameSync(extractedPath, rubyPrefix)
|
||||
} else {
|
||||
fs.symlinkSync(extractedPath, rubyPrefix, 'junction')
|
||||
}
|
||||
|
||||
if (common.shouldUseToolCache(engine, version)) {
|
||||
@@ -187,108 +106,122 @@ async function downloadAndExtract(engine, version, url, base, rubyPrefix) {
|
||||
}
|
||||
}
|
||||
|
||||
async function setupMingw(version) {
|
||||
core.exportVariable('MAKE', 'make.exe')
|
||||
|
||||
// rename these to avoid confusion when Ruby is using OpenSSL 1.0.2.
|
||||
// most current extconf files look for 1.1.x dll files first, which is the version of the renamed files
|
||||
if (common.floatVersion(version) <= 2.4) {
|
||||
renameSystem32Dlls()
|
||||
export async function installJRubyTools() {
|
||||
return await installMSYS2(toolchainVersions['head'][os.arch()])
|
||||
}
|
||||
|
||||
if (common.floatVersion(version) <= 2.3) {
|
||||
core.exportVariable('SSL_CERT_FILE', certFile)
|
||||
await common.measure('Installing MSYS1', async () => installMSYS1(version))
|
||||
return msysPathEntries
|
||||
} else {
|
||||
return []
|
||||
}
|
||||
}
|
||||
|
||||
// Ruby 2.0-2.3
|
||||
async function installMSYS1(version) {
|
||||
const url = 'https://github.com/oneclick/rubyinstaller/releases/download/devkit-4.7.2/DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe'
|
||||
const downloadPath = await tc.downloadTool(url)
|
||||
await exec.exec('7z', ['x', downloadPath, `-o${msys1}`], { silent: true })
|
||||
|
||||
// below are set in the old devkit.rb file ?
|
||||
core.exportVariable('RI_DEVKIT', msys1)
|
||||
core.exportVariable('CC' , 'gcc')
|
||||
core.exportVariable('CXX', 'g++')
|
||||
core.exportVariable('CPP', 'cpp')
|
||||
core.info(`Installed RubyInstaller DevKit for Ruby ${version}`)
|
||||
}
|
||||
|
||||
async function setupMSWin() {
|
||||
core.exportVariable('MAKE', 'nmake.exe')
|
||||
return await common.measure('Setting up MSVC environment', async () => addVCVARSEnv())
|
||||
}
|
||||
|
||||
/* Sets MSVC environment for use in Actions
|
||||
* allows steps to run without running vcvars*.bat, also for PowerShell
|
||||
* adds a convenience VCVARS environment variable
|
||||
* this assumes a single Visual Studio version being available in the Windows images */
|
||||
export function addVCVARSEnv() {
|
||||
let cmd = 'vswhere -latest -property installationPath'
|
||||
let vcVars = `${cp.execSync(cmd).toString().trim()}\\VC\\Auxiliary\\Build\\vcvars64.bat`
|
||||
|
||||
if (!fs.existsSync(vcVars)) {
|
||||
throw new Error(`Missing vcVars file: ${vcVars}`)
|
||||
}
|
||||
core.exportVariable('VCVARS', vcVars)
|
||||
|
||||
cmd = `cmd.exe /c ""${vcVars}" && set"`
|
||||
|
||||
let newEnv = new Map()
|
||||
let newSet = cp.execSync(cmd).toString().trim().split(/\r?\n/)
|
||||
newSet = newSet.filter(line => /\S=\S/.test(line))
|
||||
newSet.forEach(s => {
|
||||
let [k,v] = common.partition(s, '=')
|
||||
newEnv.set(k,v)
|
||||
async function installMSYS2(url, rubyPrefix = process.env.RUNNER_TEMP) {
|
||||
const downloadPath = await common.measure('Downloading msys2 build tools', async () => {
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
let newPathEntries = undefined
|
||||
for (let [k, v] of newEnv) {
|
||||
if (process.env[k] !== v) {
|
||||
if (/^Path$/i.test(k)) {
|
||||
const newPathStr = v.replace(`${path.delimiter}${process.env['Path']}`, '')
|
||||
newPathEntries = newPathStr.split(path.delimiter)
|
||||
} else {
|
||||
core.exportVariable(k, v)
|
||||
}
|
||||
}
|
||||
}
|
||||
return newPathEntries
|
||||
const extractPath = path.join(process.env.RUNNER_TEMP, 'msys64')
|
||||
await common.measure('Extracting msys2 build tools', async () =>
|
||||
exec.exec('7z', ['x', downloadPath, '-aoa', '-bd', `-o${extractPath}`], { silent: true }))
|
||||
|
||||
const msys2Path = path.join(rubyPrefix, 'msys64')
|
||||
if (extractPath !== msys2Path) {
|
||||
fs.symlinkSync(extractPath, msys2Path, 'junction')
|
||||
}
|
||||
|
||||
// ssl files cause issues with non RI2 Rubies (<2.4) and ruby/ruby's CI from build folder due to dll resolution
|
||||
function renameSystem32Dlls() {
|
||||
const ridk = `${rubyPrefix}\\bin\\ridk.cmd`
|
||||
if (fs.existsSync(ridk)) {
|
||||
await common.measure('Setting up ridk environment', async () => exportCommandEnv(`set MAKE=make && "${ridk}" enable`))
|
||||
}
|
||||
|
||||
// Examples:
|
||||
// - msys2-clangarm64.7z
|
||||
// - msys2-ucrt64-gcc@14.7z
|
||||
// - msys2-mingw64-gcc@14-openssl@1.1.7z
|
||||
const msys2Type = path.posix.basename(url).split(/[-.]/)[1]
|
||||
return [`${msys2Path}\\${msys2Type}\\bin`, `${msys2Path}\\usr\\bin`]
|
||||
}
|
||||
|
||||
async function installMSYS1(url) {
|
||||
const certFile = [
|
||||
'C:\\Program Files\\Git\\mingw64\\etc\\ssl\\cert.pem',
|
||||
'C:\\Program Files\\Git\\mingw64\\ssl\\cert.pem',
|
||||
].find(file => fs.existsSync(file))
|
||||
if (certFile === undefined) {
|
||||
throw new Error("Cannot find Git's cert file")
|
||||
}
|
||||
|
||||
const downloadPath = await common.measure('Downloading msys1 build tools', async () => {
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
const msys1Path = `${common.drive}:\\DevKit64`
|
||||
await common.measure('Extracting msys1 build tools', async () =>
|
||||
exec.exec('7z', ['x', downloadPath, '-aoa', '-bd', `-o${msys1Path}`], { silent: true }))
|
||||
|
||||
await common.measure('Setting up DevKit environment', async () => {
|
||||
// ssl dlls cause issues with msys1 Rubies
|
||||
const sys32 = 'C:\\Windows\\System32\\'
|
||||
const badFiles = [`${sys32}libcrypto-1_1-x64.dll`, `${sys32}libssl-1_1-x64.dll`]
|
||||
const existing = badFiles.filter((dll) => fs.existsSync(dll))
|
||||
if (existing.length > 0) {
|
||||
console.log(`Renaming ${existing.join(' and ')} to avoid dll resolution conflicts on Ruby <= 2.4`)
|
||||
core.warning(`Renaming ${existing.join(' and ')} to avoid dll resolution conflicts on Ruby < 2.4`)
|
||||
existing.forEach(dll => fs.renameSync(dll, `${dll}_`))
|
||||
}
|
||||
}
|
||||
|
||||
// Sets MSYS2 ENV variables set from running `ridk enable`
|
||||
function addRidkEnv(ridk) {
|
||||
let newEnv = new Map()
|
||||
let cmd = `cmd.exe /c "${ridk} enable && set"`
|
||||
let newSet = cp.execSync(cmd).toString().trim().split(/\r?\n/)
|
||||
newSet = newSet.filter(line => /^\S+=\S+/.test(line))
|
||||
newSet.forEach(s => {
|
||||
let [k, v] = common.partition(s, '=')
|
||||
newEnv.set(k, v)
|
||||
exportEnv({
|
||||
CC: 'gcc',
|
||||
CPP: 'cpp',
|
||||
CXX: 'g++',
|
||||
MAKE: 'make',
|
||||
RI_DEVKIT: msys1Path,
|
||||
SSL_CERT_FILE: certFile
|
||||
})
|
||||
})
|
||||
|
||||
for (let [k, v] of newEnv) {
|
||||
return [`${msys1Path}\\mingw\\x86_64-w64-mingw32\\bin`, `${msys1Path}\\mingw\\bin`, `${msys1Path}\\bin`]
|
||||
}
|
||||
|
||||
/* Sets MSVC environment for use in Actions
|
||||
* allows steps to run without running vcvars*.bat, also for PowerShell
|
||||
* this assumes a single Visual Studio version being available in the Windows images */
|
||||
async function installVCPKG(url) {
|
||||
const downloadPath = await common.measure('Downloading mswin vcpkg packages', async () => {
|
||||
console.log(url)
|
||||
return await tc.downloadTool(url)
|
||||
})
|
||||
|
||||
const extractPath = process.env.VCPKG_INSTALLATION_ROOT
|
||||
await common.measure('Extracting mswin vcpkg packages', async () =>
|
||||
exec.exec('7z', ['x', downloadPath, '-aoa', '-bd', `-o${extractPath}`], { silent: true }))
|
||||
|
||||
return await common.measure('Setting up MSVC environment', async () => {
|
||||
const cmd = 'vswhere -latest -property installationPath'
|
||||
const vcVarsBat = os.arch() === 'arm64' ? 'vcvarsarm64.bat' : 'vcvars64.bat'
|
||||
const vcVars = `${cp.execSync(cmd).toString().trim()}\\VC\\Auxiliary\\Build\\${vcVarsBat}`
|
||||
|
||||
if (!fs.existsSync(vcVars)) {
|
||||
throw new Error(`Missing vcVars file: ${vcVars}`)
|
||||
}
|
||||
|
||||
return exportCommandEnv(`set MAKE=nmake && "${vcVars}"`)
|
||||
})
|
||||
}
|
||||
|
||||
// Run a cmd command, export its environment, and return new paths
|
||||
function exportCommandEnv(command) {
|
||||
const cmd = `cmd.exe /s /c "${command} >NUL && "${process.execPath}" -e console.log(JSON.stringify(process.env))"`
|
||||
const env = JSON.parse(cp.execSync(cmd).toString())
|
||||
|
||||
const paths = env.Path.replace(`${path.delimiter}${process.env.Path}`, '').split(path.delimiter)
|
||||
delete env.Path
|
||||
|
||||
exportEnv(env)
|
||||
return paths
|
||||
}
|
||||
|
||||
function exportEnv(env) {
|
||||
for (const [k, v] of Object.entries(env)) {
|
||||
if (process.env[k] !== v) {
|
||||
if (!/^Path$/i.test(k)) {
|
||||
console.log(`${k}=${v}`)
|
||||
core.exportVariable(k, v)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user