1
0

Compare commits

...

10 Commits

Author SHA1 Message Date
Vallie Joseph
af5130cb88 . 2022-12-01 18:37:34 +00:00
Vallie Joseph
8e555ec39e . 2022-12-01 15:56:41 +00:00
Vallie Joseph
b99f9d0aba . 2022-12-01 15:52:47 +00:00
Vallie Joseph
a9f581070e . 2022-12-01 15:45:10 +00:00
Vallie Joseph
d2e9d8b595 . 2022-12-01 15:42:14 +00:00
Vallie Joseph
25424e8595 . 2022-12-01 15:41:55 +00:00
Vallie Joseph
bac1bcfa81 . 2022-12-01 15:20:32 +00:00
Vallie Joseph
1f9aeb9f74 adding stderr 2022-11-30 20:45:33 +00:00
Vallie Joseph
9679ac6b68 adding stderr 2022-11-30 20:42:30 +00:00
Vallie Joseph
f1764260c3 adding stderr 2022-11-30 20:41:41 +00:00
4 changed files with 60 additions and 2 deletions

23
dist/index.js vendored
View File

@@ -7403,6 +7403,9 @@ class GitCommandManager {
const listeners = {
stderr: (data) => {
stderr.push(data.toString());
},
errline: (line) => {
stderr.push(line);
}
};
const output = yield this.execGit(args, false, false, listeners);
@@ -7418,7 +7421,7 @@ class GitCommandManager {
result.push(branch);
}
}
core.debug(stderr.join('\n'));
core.info(stderr.join('\n'));
return result;
});
}
@@ -7689,15 +7692,33 @@ class GitCommandManager {
// }}
const listenersD = Object.assign(Object.assign({}, customListeners), defaultListener);
const stdout = [];
// let temp = ''
// let temp2 = ''
const options = {
cwd: this.workingDirectory,
env,
silent,
ignoreReturnCode: allowAllExitCodes,
listeners: listenersD
// ,
// errStream: new stream.Writable({
// write(chunk, _, next) {
// temp += chunk.toString()
// next()
// }
// }),
// outStream: new stream.Writable({
// write(chunk, _, next) {
// temp2 += chunk.toString()
// next()
// }
// })
};
result.exitCode = yield exec.exec(`"${this.gitPath}"`, args, options);
result.stdout = stdout.join('');
// core.info(temp.length.toString())
// core.info(temp2.length.toString())
core.info(result.stdout);
return result;
});
}

13
package-lock.json generated
View File

@@ -5906,6 +5906,11 @@
"integrity": "sha512-qcLvDUPf8DSIMWarHT2ptgcqrYg62n3vPA7vhrOF24d8UNzbUBaHu2CySiENR3nEDzYgaN60071t0F6KLYMQ7Q==",
"dev": true
},
"emitter-component": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/emitter-component/-/emitter-component-1.1.1.tgz",
"integrity": "sha512-G+mpdiAySMuB7kesVRLuyvYRqDmshB7ReKEVuyBPkzQlmiDiLrt7hHHIy4Aff552bgknVN7B2/d3lzhGO5dvpQ=="
},
"emittery": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
@@ -16487,6 +16492,14 @@
}
}
},
"stream": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/stream/-/stream-0.0.2.tgz",
"integrity": "sha512-gCq3NDI2P35B2n6t76YJuOp7d6cN/C7Rt0577l91wllh0sY9ZBuw9KaSGqH/b0hzn3CWWJbpbW0W0WvQ1H/Q7g==",
"requires": {
"emitter-component": "^1.1.1"
}
},
"string-length": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",

View File

@@ -33,6 +33,7 @@
"@actions/github": "^2.2.0",
"@actions/io": "^1.0.1",
"@actions/tool-cache": "^1.1.2",
"stream": "0.0.2",
"uuid": "^3.3.3"
},
"devDependencies": {

View File

@@ -7,6 +7,7 @@ import * as refHelper from './ref-helper'
import * as regexpHelper from './regexp-helper'
import * as retryHelper from './retry-helper'
import {GitVersion} from './git-version'
import stream, {Writable} from 'stream'
// Auth header not supported before 2.9
// Wire protocol v2 not supported before 2.18
@@ -108,6 +109,9 @@ class GitCommandManager {
const listeners = {
stderr: (data: Buffer) => {
stderr.push(data.toString())
},
errline: (line: string) => {
stderr.push(line)
}
}
const output = await this.execGit(args, false, false, listeners)
@@ -124,7 +128,7 @@ class GitCommandManager {
result.push(branch)
}
}
core.debug(stderr.join('\n'))
core.info(stderr.join('\n'))
return result
}
@@ -425,16 +429,35 @@ class GitCommandManager {
// }}
const listenersD = {...customListeners, ...defaultListener}
const stdout: string[] = []
// let temp = ''
// let temp2 = ''
const options = {
cwd: this.workingDirectory,
env,
silent,
ignoreReturnCode: allowAllExitCodes,
listeners: listenersD
// ,
// errStream: new stream.Writable({
// write(chunk, _, next) {
// temp += chunk.toString()
// next()
// }
// }),
// outStream: new stream.Writable({
// write(chunk, _, next) {
// temp2 += chunk.toString()
// next()
// }
// })
}
result.exitCode = await exec.exec(`"${this.gitPath}"`, args, options)
result.stdout = stdout.join('')
// core.info(temp.length.toString())
// core.info(temp2.length.toString())
core.info(result.stdout)
return result
}