mirror of
https://github.com/DeterminateSystems/nix-installer-action.git
synced 2024-12-23 13:32:06 +01:00
retries: switch back to piping with non-web node streams
This commit is contained in:
parent
663467bee8
commit
d46d5b144a
3 changed files with 32 additions and 15 deletions
35
dist/index.js
vendored
35
dist/index.js
vendored
|
@ -23,11 +23,13 @@ __nccwpck_require__.r(__webpack_exports__);
|
||||||
/* harmony import */ var node_os__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__nccwpck_require__.n(node_os__WEBPACK_IMPORTED_MODULE_6__);
|
/* harmony import */ var node_os__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__nccwpck_require__.n(node_os__WEBPACK_IMPORTED_MODULE_6__);
|
||||||
/* harmony import */ var node_stream__WEBPACK_IMPORTED_MODULE_7__ = __nccwpck_require__(4492);
|
/* harmony import */ var node_stream__WEBPACK_IMPORTED_MODULE_7__ = __nccwpck_require__(4492);
|
||||||
/* harmony import */ var node_stream__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__nccwpck_require__.n(node_stream__WEBPACK_IMPORTED_MODULE_7__);
|
/* harmony import */ var node_stream__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__nccwpck_require__.n(node_stream__WEBPACK_IMPORTED_MODULE_7__);
|
||||||
/* harmony import */ var node_fs__WEBPACK_IMPORTED_MODULE_8__ = __nccwpck_require__(7561);
|
/* harmony import */ var node_stream_promises__WEBPACK_IMPORTED_MODULE_8__ = __nccwpck_require__(6402);
|
||||||
/* harmony import */ var node_fs__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__nccwpck_require__.n(node_fs__WEBPACK_IMPORTED_MODULE_8__);
|
/* harmony import */ var node_stream_promises__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__nccwpck_require__.n(node_stream_promises__WEBPACK_IMPORTED_MODULE_8__);
|
||||||
/* harmony import */ var string_argv__WEBPACK_IMPORTED_MODULE_10__ = __nccwpck_require__(1810);
|
/* harmony import */ var node_fs__WEBPACK_IMPORTED_MODULE_9__ = __nccwpck_require__(7561);
|
||||||
/* harmony import */ var fetch_retry__WEBPACK_IMPORTED_MODULE_9__ = __nccwpck_require__(9068);
|
/* harmony import */ var node_fs__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__nccwpck_require__.n(node_fs__WEBPACK_IMPORTED_MODULE_9__);
|
||||||
/* harmony import */ var fetch_retry__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__nccwpck_require__.n(fetch_retry__WEBPACK_IMPORTED_MODULE_9__);
|
/* harmony import */ var string_argv__WEBPACK_IMPORTED_MODULE_11__ = __nccwpck_require__(1810);
|
||||||
|
/* harmony import */ var fetch_retry__WEBPACK_IMPORTED_MODULE_10__ = __nccwpck_require__(9068);
|
||||||
|
/* harmony import */ var fetch_retry__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__nccwpck_require__.n(fetch_retry__WEBPACK_IMPORTED_MODULE_10__);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -39,7 +41,8 @@ __nccwpck_require__.r(__webpack_exports__);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const fetchRetry = fetch_retry__WEBPACK_IMPORTED_MODULE_9___default()(global.fetch);
|
|
||||||
|
const fetchRetry = fetch_retry__WEBPACK_IMPORTED_MODULE_10___default()(global.fetch);
|
||||||
class NixInstallerAction {
|
class NixInstallerAction {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.platform = get_nix_platform();
|
this.platform = get_nix_platform();
|
||||||
|
@ -199,7 +202,7 @@ class NixInstallerAction {
|
||||||
args.push(get_default_planner());
|
args.push(get_default_planner());
|
||||||
}
|
}
|
||||||
if (this.extra_args) {
|
if (this.extra_args) {
|
||||||
const extra_args = (0,string_argv__WEBPACK_IMPORTED_MODULE_10__/* ["default"] */ .Z)(this.extra_args);
|
const extra_args = (0,string_argv__WEBPACK_IMPORTED_MODULE_11__/* ["default"] */ .Z)(this.extra_args);
|
||||||
args.concat(extra_args);
|
args.concat(extra_args);
|
||||||
}
|
}
|
||||||
const merged_env = Object.assign(Object.assign({}, process.env), execution_env);
|
const merged_env = Object.assign(Object.assign({}, process.env), execution_env);
|
||||||
|
@ -332,18 +335,20 @@ class NixInstallerAction {
|
||||||
if (response.body !== null) {
|
if (response.body !== null) {
|
||||||
const handle = await (0,node_fs_promises__WEBPACK_IMPORTED_MODULE_2__.open)(tempfile, "w");
|
const handle = await (0,node_fs_promises__WEBPACK_IMPORTED_MODULE_2__.open)(tempfile, "w");
|
||||||
const fileStream = handle.createWriteStream({ autoClose: false });
|
const fileStream = handle.createWriteStream({ autoClose: false });
|
||||||
const fileStreamWeb = node_stream__WEBPACK_IMPORTED_MODULE_7___default().Writable.toWeb(fileStream);
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
await response.body.pipeTo(fileStreamWeb);
|
const bodyCast = response.body;
|
||||||
// fileStreamWeb is auto-closed by pipeTo, confirmed
|
const bodyReader = node_stream__WEBPACK_IMPORTED_MODULE_7___default().Readable.fromWeb(bodyCast);
|
||||||
|
await (0,node_stream_promises__WEBPACK_IMPORTED_MODULE_8__.finished)(bodyReader.pipe(fileStream));
|
||||||
fileStream.close();
|
fileStream.close();
|
||||||
await handle.sync();
|
await handle.sync();
|
||||||
|
await handle.close();
|
||||||
_actions_core__WEBPACK_IMPORTED_MODULE_0__.info(`Downloaded \`nix-installer\` to \`${tempfile}\``);
|
_actions_core__WEBPACK_IMPORTED_MODULE_0__.info(`Downloaded \`nix-installer\` to \`${tempfile}\``);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
throw new Error("No response body recieved");
|
throw new Error("No response body recieved");
|
||||||
}
|
}
|
||||||
// Make executable
|
// Make executable
|
||||||
await (0,node_fs_promises__WEBPACK_IMPORTED_MODULE_2__.chmod)(tempfile, (node_fs__WEBPACK_IMPORTED_MODULE_8___default().constants.S_IXUSR) | (node_fs__WEBPACK_IMPORTED_MODULE_8___default().constants.S_IXGRP));
|
await (0,node_fs_promises__WEBPACK_IMPORTED_MODULE_2__.chmod)(tempfile, (node_fs__WEBPACK_IMPORTED_MODULE_9___default().constants.S_IXUSR) | (node_fs__WEBPACK_IMPORTED_MODULE_9___default().constants.S_IXGRP));
|
||||||
return tempfile;
|
return tempfile;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -13556,6 +13561,14 @@ module.exports = require("node:stream");
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 6402:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
module.exports = require("node:stream/promises");
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
/***/ 2037:
|
/***/ 2037:
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
|
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
10
src/main.ts
10
src/main.ts
|
@ -6,6 +6,8 @@ import { randomUUID } from "node:crypto";
|
||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
import { tmpdir } from "node:os";
|
import { tmpdir } from "node:os";
|
||||||
import stream from "node:stream";
|
import stream from "node:stream";
|
||||||
|
import stream_web from "node:stream/web";
|
||||||
|
import { finished } from "node:stream/promises";
|
||||||
import fs from "node:fs";
|
import fs from "node:fs";
|
||||||
import stringArgv from "string-argv";
|
import stringArgv from "string-argv";
|
||||||
|
|
||||||
|
@ -432,11 +434,13 @@ class NixInstallerAction {
|
||||||
if (response.body !== null) {
|
if (response.body !== null) {
|
||||||
const handle = await open(tempfile, "w");
|
const handle = await open(tempfile, "w");
|
||||||
const fileStream = handle.createWriteStream({ autoClose: false });
|
const fileStream = handle.createWriteStream({ autoClose: false });
|
||||||
const fileStreamWeb = stream.Writable.toWeb(fileStream);
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
await response.body.pipeTo(fileStreamWeb);
|
const bodyCast = response.body as stream_web.ReadableStream<any>;
|
||||||
// fileStreamWeb is auto-closed by pipeTo, confirmed
|
const bodyReader = stream.Readable.fromWeb(bodyCast);
|
||||||
|
await finished(bodyReader.pipe(fileStream));
|
||||||
fileStream.close();
|
fileStream.close();
|
||||||
await handle.sync();
|
await handle.sync();
|
||||||
|
await handle.close();
|
||||||
|
|
||||||
actions_core.info(`Downloaded \`nix-installer\` to \`${tempfile}\``);
|
actions_core.info(`Downloaded \`nix-installer\` to \`${tempfile}\``);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue