From c49deecea1c29e10ae751dfc04898cd4368ce591 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sun, 8 Nov 2020 19:05:07 +0100 Subject: [PATCH] Rubinius builds will no longer be provided --- dist/index.js | 2 ++ ruby-builder.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dist/index.js b/dist/index.js index 4f7f4b1..e8826ff 100644 --- a/dist/index.js +++ b/dist/index.js @@ -52860,6 +52860,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "install", function() { return install; }); const os = __webpack_require__(87) const path = __webpack_require__(622) +const core = __webpack_require__(186) const exec = __webpack_require__(514) const io = __webpack_require__(436) const tc = __webpack_require__(188) @@ -52886,6 +52887,7 @@ async function downloadAndExtract(platform, engine, version) { // Set the PATH now, so the MSYS2 'tar' is in Path on Windows if (engine === 'rubinius') { + core.warning('Rubinius builds will no longer be provided, see https://github.com/ruby/setup-ruby/issues/101') common.setupPath([path.join(rubyPrefix, 'bin'), path.join(rubyPrefix, 'gems', 'bin')]) } else { common.setupPath([path.join(rubyPrefix, 'bin')]) diff --git a/ruby-builder.js b/ruby-builder.js index 3edf062..ae987b1 100644 --- a/ruby-builder.js +++ b/ruby-builder.js @@ -1,5 +1,6 @@ const os = require('os') const path = require('path') +const core = require('@actions/core') const exec = require('@actions/exec') const io = require('@actions/io') const tc = require('@actions/tool-cache') @@ -26,6 +27,7 @@ async function downloadAndExtract(platform, engine, version) { // Set the PATH now, so the MSYS2 'tar' is in Path on Windows if (engine === 'rubinius') { + core.warning('Rubinius builds will no longer be provided, see https://github.com/ruby/setup-ruby/issues/101') common.setupPath([path.join(rubyPrefix, 'bin'), path.join(rubyPrefix, 'gems', 'bin')]) } else { common.setupPath([path.join(rubyPrefix, 'bin')])