fix: small edits

This commit is contained in:
Tom Hu
2022-04-04 16:28:42 -04:00
parent f37520c6b0
commit ac6033346c
5 changed files with 17 additions and 11 deletions

View File

@@ -1,8 +1,14 @@
## 2.2.0
### Features
- # Incorporate `gcov` arguments for the Codecov uploader
- #688 Incorporate `gcov` arguments for the Codecov uploader
### Dependencies
- #548 build(deps-dev): bump jest-junit from 12.2.0 to 13.0.0
- #603 [Snyk] Upgrade @actions/core from 1.5.0 to 1.6.0
- #628 build(deps): bump node-fetch from 2.6.1 to 3.1.1
- #634 build(deps): bump node-fetch from 3.1.1 to 3.2.0
- #636 build(deps): bump openpgp from 5.0.1 to 5.1.0
- #653 build(deps-dev): bump @types/node from 16.11.21 to 17.0.18
## 2.1.0
### Features

6
dist/index.js vendored
View File

@@ -12981,13 +12981,13 @@ const buildExec = () => {
execArgs.push('-g');
}
if (gcovArgs) {
execArgs.push('-ga', `${gcovArgs}`);
execArgs.push('--ga', `${gcovArgs}`);
}
if (gcovIgnore) {
execArgs.push('-gi', `${gcovIgnore}`);
execArgs.push('--gi', `${gcovIgnore}`);
}
if (gcovInclude) {
execArgs.push('-gI', `${gcovInclude}`);
execArgs.push('--gI', `${gcovInclude}`);
}
if (overrideBranch) {
execArgs.push('-B', `${overrideBranch}`);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@@ -85,11 +85,11 @@ test('all arguments', () => {
'-F',
'test2',
'-g',
'-ga',
'--ga',
'-v',
'-gi',
'--gi',
'*.fake',
'-gI',
'--gI',
'real_file',
'-B',
'thomasrockhu/test',

View File

@@ -114,13 +114,13 @@ const buildExec = () => {
execArgs.push('-g');
}
if (gcovArgs) {
execArgs.push('-ga', `${gcovArgs}`);
execArgs.push('--ga', `${gcovArgs}`);
}
if (gcovIgnore) {
execArgs.push('-gi', `${gcovIgnore}`);
execArgs.push('--gi', `${gcovIgnore}`);
}
if (gcovInclude) {
execArgs.push('-gI', `${gcovInclude}`);
execArgs.push('--gI', `${gcovInclude}`);
}
if (overrideBranch) {