-
Notifications
You must be signed in to change notification settings - Fork 53
/
action-ros-ci.ts
714 lines (666 loc) · 20.9 KB
/
action-ros-ci.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
import * as core from "@actions/core";
import * as github from "@actions/github";
import * as im from "@actions/exec/lib/interfaces"; // eslint-disable-line no-unused-vars
import * as tr from "@actions/exec/lib/toolrunner";
import * as io from "@actions/io";
import * as os from "os";
import * as path from "path";
import * as url from "url";
import fs from "fs";
import retry from "async-retry";
import * as dep from "./dependencies";
const validROS1Distros: string[] = ["kinetic", "lunar", "melodic", "noetic"];
const validROS2Distros: string[] = [
"dashing",
"eloquent",
"foxy",
"galactic",
"humble",
"rolling",
];
const targetROS1DistroInput: string = "target-ros1-distro";
const targetROS2DistroInput: string = "target-ros2-distro";
const isLinux: boolean = process.platform == "linux";
const isWindows: boolean = process.platform == "win32";
const useMergeInstall: boolean = isWindows;
/**
* Join string array using a single space and make sure to filter out empty elements.
*
* @param values the string values array
* @returns the joined string
*/
export function filterNonEmptyJoin(values: string[]): string {
return values.filter((v) => v.length > 0).join(" ");
}
/**
* Check if a string is a valid JSON string.
*
* @param str the string to validate
* @returns `true` if valid, `false` otherwise
*/
function isValidJson(str: string): boolean {
try {
JSON.parse(str);
} catch (e) {
return false;
}
return true;
}
/**
* Convert local paths to URLs.
*
* The user can pass the VCS repo file either as a URL or a path.
* If it is a path, this function will convert it into a URL (file://...).
* If the file is already passed as an URL, this function does nothing.
*
* @param vcsRepoFileUrl path or URL to the repo file
* @returns URL to the repo file
*/
function resolveVcsRepoFileUrl(vcsRepoFileUrl: string): string {
if (fs.existsSync(vcsRepoFileUrl)) {
return url.pathToFileURL(path.resolve(vcsRepoFileUrl)).href;
} else {
return vcsRepoFileUrl;
}
}
/**
* Execute a shell command and wrap the output in a log group.
*
* @param command command to execute w/ any params
* @param force_bash force running in bash shell, instead of os default. defaults to true.
* @param options optional exec options. See ExecOptions
* @param log_message log group title.
* @returns Promise<number> exit code
*/
export async function execShellCommand(
command: string[],
options?: im.ExecOptions,
force_bash: boolean = true,
log_message?: string
): Promise<number> {
const use_bash = !isWindows || force_bash;
if (use_bash) {
// Bash commands needs to be flattened into a single string when passed to bash with "-c" switch
command = [filterNonEmptyJoin(command)];
}
let toolRunnerCommandLine = "";
let toolRunnerCommandLineArgs: string[] = [];
if (isWindows) {
toolRunnerCommandLine = "C:\\Windows\\system32\\cmd.exe";
// This passes the same flags to cmd.exe that "run:" in a workflow.
// https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#using-a-specific-shell
// Except for /D, which disables the AutoRun functionality from command prompt
// and it blocks Python virtual environment activation if one configures it in
// the previous steps.
toolRunnerCommandLineArgs = [
"/E:ON",
"/V:OFF",
"/S",
"/C",
"call",
"%programfiles(x86)%\\Microsoft Visual Studio\\2019\\Enterprise\\VC\\Auxiliary\\Build\\vcvars64.bat",
"&&",
...(use_bash ? [`C:\\Program Files\\Git\\bin\\bash.exe`, `-c`] : []),
...command,
];
} else {
toolRunnerCommandLine = "bash";
toolRunnerCommandLineArgs = ["-c", ...command];
}
const message =
log_message ||
`Invoking: ${toolRunnerCommandLine} ${toolRunnerCommandLineArgs}`;
const runner: tr.ToolRunner = new tr.ToolRunner(
toolRunnerCommandLine,
toolRunnerCommandLineArgs,
options
);
if (options && options.silent) {
return runner.exec();
}
return core.group(message, () => {
return runner.exec();
});
}
//Determine whether all inputs name supported ROS distributions.
export function validateDistros(
ros1Distro: string,
ros2Distro: string
): boolean {
if (!ros1Distro && !ros2Distro) {
core.setFailed(
`Neither '${targetROS1DistroInput}' or '${targetROS2DistroInput}' inputs were set, at least one is required.`
);
return false;
}
if (ros1Distro && validROS1Distros.indexOf(ros1Distro) <= -1) {
core.setFailed(
`Input ${ros1Distro} was not a valid ROS 1 distribution for '${targetROS1DistroInput}'. Valid values: ${validROS1Distros}`
);
return false;
}
if (ros2Distro && validROS2Distros.indexOf(ros2Distro) <= -1) {
core.setFailed(
`Input ${ros2Distro} was not a valid ROS 2 distribution for '${targetROS2DistroInput}'. Valid values: ${validROS2Distros}`
);
return false;
}
return true;
}
/**
* Install ROS dependencies for given packages in the workspace, for all ROS distros being used.
*/
async function installRosdeps(
packageSelection: string[],
skipKeys: string[],
workspaceDir: string,
options: im.ExecOptions,
ros1Distro?: string,
ros2Distro?: string
): Promise<number> {
const scriptName = "install_rosdeps.sh";
const scriptPath = path.join(workspaceDir, scriptName);
const scriptContent = `#!/bin/bash
set -euxo pipefail
if [ $# != 1 ]; then
echo "Specify rosdistro name as single argument to this script"
exit 1
fi
DISTRO=$1
package_paths=$(colcon list --paths-only ${filterNonEmptyJoin(
packageSelection
)})
# suppress errors from unresolved install keys to preserve backwards compatibility
# due to difficulty reading names of some non-catkin dependencies in the ros2 core
# see https://index.ros.org/doc/ros2/Installation/Foxy/Linux-Development-Setup/#install-dependencies-using-rosdep
rosdep install -r --from-paths $package_paths --ignore-src --skip-keys "rti-connext-dds-5.3.1 ${filterNonEmptyJoin(
skipKeys
)}" --rosdistro $DISTRO -y || true`;
fs.writeFileSync(scriptPath, scriptContent, { mode: 0o766 });
let exitCode = 0;
if (ros1Distro) {
exitCode += await execShellCommand(
[`./${scriptName} ${ros1Distro}`],
options
);
}
if (ros2Distro) {
exitCode += await execShellCommand(
[`./${scriptName} ${ros2Distro}`],
options
);
}
return exitCode;
}
/**
* Run tests and process & aggregate coverage results.
*
* @param colconCommandPrefix the prefix to use before colcon commands
* @param options the exec options
* @param testPackageSelection the package selection option
* @param colconExtraArgs the extra args for 'colcon test'
* @param coverageIgnorePattern the coverage filter pattern to use for lcov
*/
async function runTests(
colconCommandPrefix: string[],
options: im.ExecOptions,
testPackageSelection: string[],
colconExtraArgs: string[],
coverageIgnorePattern: string[]
): Promise<void> {
const doLcovResult = !isWindows; // lcov-result not supported in Windows
const doTests = !isWindows; // Temporarily disable colcon test on Windows to unblock Windows CI builds: https://github.com/ros-tooling/action-ros-ci/pull/712#issuecomment-969495087
if (doLcovResult) {
// ignoreReturnCode is set to true to avoid having a lack of coverage
// data fail the build.
const colconLcovInitialCmd = [`colcon`, `lcov-result`, `--initial`];
await execShellCommand(
[...colconCommandPrefix, ...colconLcovInitialCmd],
{
...options,
ignoreReturnCode: true,
},
false
);
}
let colconTestCmd = [
`colcon`,
`test`,
`--event-handlers=console_cohesion+`,
...testPackageSelection,
...colconExtraArgs,
];
if (useMergeInstall) {
colconTestCmd = [...colconTestCmd, `--merge-install`];
}
if (doTests) {
await execShellCommand(
[...colconCommandPrefix, ...colconTestCmd],
options,
false
);
/**
* Display all test results first and ignore the return code. Then, display only failing
* tests with their output and let non-zero return code fail the job.
*/
const colconTestResultCmd = ["colcon", "test-result"];
const colconTestResultAllCmd = [...colconTestResultCmd, "--all"];
const colconTestResultVerboseCmd = [...colconTestResultCmd, "--verbose"];
await execShellCommand(
[...colconCommandPrefix, ...colconTestResultAllCmd],
{
...options,
ignoreReturnCode: true,
},
false
);
await execShellCommand(
[...colconCommandPrefix, ...colconTestResultVerboseCmd],
options,
false
);
}
if (doLcovResult) {
// ignoreReturnCode, check comment above in --initial
const colconLcovResultCmd = [
`colcon`,
`lcov-result`,
...testPackageSelection,
...coverageIgnorePattern,
`--verbose`,
];
await execShellCommand(
[...colconCommandPrefix, ...colconLcovResultCmd],
{
...options,
ignoreReturnCode: true,
},
false
);
}
const colconCoveragepyResultCmd = [
`colcon`,
`coveragepy-result`,
...testPackageSelection,
`--verbose`,
`--coverage-report-args`,
`-m`,
];
await execShellCommand(
[...colconCommandPrefix, ...colconCoveragepyResultCmd],
options,
false
);
}
async function run_throw(): Promise<void> {
const repo = github.context.repo;
const workspace = process.env.GITHUB_WORKSPACE as string;
const colconDefaults = core.getInput("colcon-defaults");
const colconMixinRepo = core.getInput("colcon-mixin-repository");
const extraCmakeArgsInput = core.getInput("extra-cmake-args");
const extraCmakeArgs = extraCmakeArgsInput
? ["--cmake-args", extraCmakeArgsInput]
: [];
const coverageIgnorePatternInput = core.getInput("coverage-ignore-pattern");
const coverageIgnorePattern = coverageIgnorePatternInput
? ["--filter", coverageIgnorePatternInput]
: [];
const colconExtraArgsInput = core.getInput("colcon-extra-args");
const colconExtraArgs = colconExtraArgsInput ? [colconExtraArgsInput] : [];
const importToken = core.getInput("import-token");
const packageNameInput = core.getInput("package-name");
const packageNames = packageNameInput
? packageNameInput.split(RegExp("\\s"))
: undefined;
const buildPackageSelection = packageNames
? ["--packages-up-to", ...packageNames]
: [];
const testPackageSelection = packageNames
? ["--packages-select", ...packageNames]
: [];
const rosdepSkipKeysInput = core.getInput("rosdep-skip-keys");
const rosdepSkipKeys = rosdepSkipKeysInput
? rosdepSkipKeysInput.split(RegExp("\\s"))
: undefined;
const rosdepSkipKeysSelection = rosdepSkipKeys ? [...rosdepSkipKeys] : [];
const rosWorkspaceName = "ros_ws";
core.setOutput("ros-workspace-directory-name", rosWorkspaceName);
const rosWorkspaceDir = path.join(workspace, rosWorkspaceName);
const targetRos1Distro = core.getInput(targetROS1DistroInput);
const targetRos2Distro = core.getInput(targetROS2DistroInput);
const vcsRepoFileUrlListAsString = core.getInput("vcs-repo-file-url") || "";
let vcsRepoFileUrlList = vcsRepoFileUrlListAsString.split(RegExp("\\s"));
const skipTests = core.getInput("skip-tests") === "true";
// Check if PR overrides/adds supplemental repos files
const vcsReposOverride = dep.getReposFilesOverride(github.context.payload);
const vcsReposSupplemental = dep.getReposFilesSupplemental(
github.context.payload
);
await core.group(
"Repos files: override" + (vcsReposOverride.length === 0 ? " - none" : ""),
() => {
for (const vcsRepos of vcsReposOverride) {
core.info("\t" + vcsRepos);
}
return Promise.resolve();
}
);
if (vcsReposOverride.length > 0) {
vcsRepoFileUrlList = vcsReposOverride;
}
await core.group(
"Repos files: supplemental" +
(vcsReposSupplemental.length === 0 ? " - none" : ""),
() => {
for (const vcsRepos of vcsReposSupplemental) {
core.info("\t" + vcsRepos);
}
return Promise.resolve();
}
);
vcsRepoFileUrlList = vcsRepoFileUrlList.concat(vcsReposSupplemental);
const vcsRepoFileUrlListNonEmpty = vcsRepoFileUrlList.filter((x) => x != "");
if (!validateDistros(targetRos1Distro, targetRos2Distro)) {
return;
}
// rosdep does not reliably work on Windows, see
// ros-infrastructure/rosdep#610 for instance. So, we do not run it.
if (!isWindows) {
await retry(
async () => {
await execShellCommand(["rosdep update --include-eol-distros"]);
},
{
retries: 3,
}
);
}
// Reset colcon configuration and create defaults file if one was provided.
await io.rmRF(path.join(os.homedir(), ".colcon"));
let colconDefaultsFile = "";
if (colconDefaults.length > 0) {
if (!isValidJson(colconDefaults)) {
core.setFailed(
`colcon-defaults value is not a valid JSON string:\n${colconDefaults}`
);
return;
}
colconDefaultsFile = path.join(
fs.mkdtempSync(path.join(os.tmpdir(), "colcon-defaults-")),
"defaults.yaml"
);
fs.writeFileSync(colconDefaultsFile, colconDefaults);
}
// Wipe out the workspace directory to ensure the workspace is always
// identical.
await io.rmRF(rosWorkspaceDir);
// Checkout ROS 2 from source and install ROS 2 system dependencies
await io.mkdirP(rosWorkspaceDir + "/src");
const options: im.ExecOptions = {
cwd: rosWorkspaceDir,
env: {
...process.env,
ROS_VERSION: targetRos2Distro ? "2" : "1",
ROS_PYTHON_VERSION:
targetRos2Distro || (targetRos1Distro && targetRos1Distro == "noetic")
? "3"
: "2",
},
};
if (colconDefaultsFile !== "") {
options.env = {
...options.env,
COLCON_DEFAULTS_FILE: colconDefaultsFile,
};
}
if (isLinux) {
options.env = {
...options.env,
DEBIAN_FRONTEND: "noninteractive",
};
}
if (importToken !== "") {
// Unset all local extraheader config entries possibly set by actions/checkout,
// because local settings take precedence and the default token used by
// actions/checkout might not have the right permissions for any/all repos
await execShellCommand(
[
`/usr/bin/git config --local --unset-all http.https://github.com/.extraheader || true`,
],
options
);
await execShellCommand(
[
String.raw`/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader'` +
` && git config --local --unset-all 'http.https://github.com/.extraheader' || true`,
],
options
);
// Use a global insteadof entry because local configs aren't observed by git clone
await execShellCommand(
[
`/usr/bin/git config --global url.https://x-access-token:${importToken}@github.com.insteadof 'https://github.com'`,
],
options
);
// same as last three comands but for ssh urls
await execShellCommand(
[
`/usr/bin/git config --local --unset-all git@github.com:.extraheader || true`,
],
options
);
await execShellCommand(
[
String.raw`/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'git@github\.com:.extraheader'` +
` && git config --local --unset-all 'git@github.com:.extraheader' || true`,
],
options
);
// Use a global insteadof entry because local configs aren't observed by git clone (ssh)
await execShellCommand(
[
`/usr/bin/git config --global url.https://x-access-token:${importToken}@github.com/.insteadof 'git@github.com:'`,
],
options
);
if (core.isDebug()) {
await execShellCommand(
[`/usr/bin/git config --list --show-origin || true`],
options
);
}
}
// Make sure to delete root .colcon directory if it exists
// This is because, for some reason, using Docker, commands might get run as root
await execShellCommand(
[`rm -rf ${path.join(path.sep, "root", ".colcon")} || true`],
{ ...options, silent: true }
);
for (const vcsRepoFileUrl of vcsRepoFileUrlListNonEmpty) {
const resolvedUrl = resolveVcsRepoFileUrl(vcsRepoFileUrl);
await execShellCommand(
[`vcs import --force --recursive src/ --input ${resolvedUrl}`],
options
);
}
// If the package under tests is part of ros.repos, remove it first.
// We do not want to allow the "default" head state of the package to
// to be present in the workspace, and colcon will fail stating it found twice
// a package with an identical name.
let posixPathScriptPath = "";
if (isWindows) {
// vcs might output paths with a mix of forward slashes and backslashes on Windows
posixPathScriptPath = path.join(rosWorkspaceDir, "slash_converter.sh");
const scriptContent = String.raw`#!/bin/bash
while IFS= read -r line; do
echo "$line" | sed 's/\\/\//g'
done`;
fs.writeFileSync(posixPathScriptPath, scriptContent, {
mode: 0o766,
});
posixPathScriptPath = posixPathScriptPath.replace(/\\/g, "/");
}
const posixRosWorkspaceDir = isWindows
? rosWorkspaceDir.replace(/\\/g, "/")
: rosWorkspaceDir;
await execShellCommand(
[
`vcs diff -s --repos ${posixRosWorkspaceDir} | cut -d ' ' -f 1 | grep "${repo["repo"]}$"` +
(isWindows ? ` | ${posixPathScriptPath}` : "") +
` | xargs rm -rf`,
],
undefined
);
// The repo file for the repository needs to be generated on-the-fly to
// incorporate the custom repository URL and branch name, when a PR is
// being built.
let repoFullName = process.env.GITHUB_REPOSITORY as string;
if (github.context.payload.pull_request) {
repoFullName = github.context.payload.pull_request.head.repo.full_name;
}
const headRef = process.env.GITHUB_HEAD_REF as string;
const commitRef = headRef || github.context.sha;
const repoFilePath = path.join(rosWorkspaceDir, "package.repo");
// Add a random string prefix to avoid naming collisions when checking out the test repository
const randomStringPrefix = Math.random().toString(36).substring(2, 15);
const repoFileContent = `repositories:
${randomStringPrefix}/${repo["repo"]}:
type: git
url: 'https://github.com/${repoFullName}.git'
version: '${commitRef}'`;
fs.writeFileSync(repoFilePath, repoFileContent);
await execShellCommand(
["vcs import --force --recursive src/ < package.repo"],
options
);
// Print HEAD commits of all repos
await execShellCommand(["vcs log -l1 src/"], options);
if (isLinux) {
// Always update APT before installing packages on Ubuntu
await execShellCommand(["sudo apt-get update"]);
}
// rosdep does not really work on Windows, so do not use it
// See: https://github.com/ros-infrastructure/rosdep/issues/610
if (!isWindows) {
await installRosdeps(
buildPackageSelection,
rosdepSkipKeysSelection,
rosWorkspaceDir,
options,
targetRos1Distro,
targetRos2Distro
);
}
if (colconDefaults.includes(`"mixin"`) && colconMixinRepo !== "") {
await execShellCommand(
[`colcon`, `mixin`, `add`, `default`, `${colconMixinRepo}`],
options,
false
);
await execShellCommand(
[`colcon`, `mixin`, `update`, `default`],
options,
false
);
}
// Add the future install bin directory to PATH.
// This enables cmake find_package to find packages installed in the
// colcon install directory, even if local_setup.sh has not been sourced.
//
// From the find_package doc:
// https://cmake.org/cmake/help/latest/command/find_package.html
// 5. Search the standard system environment variables.
// Path entries ending in /bin or /sbin are automatically converted to
// their parent directories:
// PATH
//
// ament_cmake should handle this automatically, but we are seeing cases
// where this does not happen. See issue #26 for relevant CI logs.
core.addPath(path.join(rosWorkspaceDir, "install", "bin"));
// Source any installed ROS distributions if they are present
let colconCommandPrefix: string[] = [];
if (isLinux) {
if (targetRos1Distro) {
const ros1SetupPath = `/opt/ros/${targetRos1Distro}/setup.sh`;
if (fs.existsSync(ros1SetupPath)) {
colconCommandPrefix = [
...colconCommandPrefix,
`source ${ros1SetupPath}`,
`&&`,
];
}
}
if (targetRos2Distro) {
const ros2SetupPath = `/opt/ros/${targetRos2Distro}/setup.sh`;
if (fs.existsSync(ros2SetupPath)) {
colconCommandPrefix = [
...colconCommandPrefix,
`source ${ros2SetupPath}`,
`&&`,
];
}
}
} else if (isWindows) {
// Windows only supports ROS2
if (targetRos2Distro) {
const ros2SetupPath = `c:/dev/${targetRos2Distro}/ros2-windows/setup.bat`;
if (fs.existsSync(ros2SetupPath)) {
colconCommandPrefix = [
...colconCommandPrefix,
`${ros2SetupPath}`,
`&&`,
];
}
}
}
let colconBuildCmd = [
`colcon`,
`build`,
`--symlink-install`,
...buildPackageSelection,
...colconExtraArgs,
...extraCmakeArgs,
`--event-handlers=console_cohesion+`,
];
if (useMergeInstall) {
colconBuildCmd = [...colconBuildCmd, `--merge-install`];
}
await execShellCommand(
[...colconCommandPrefix, ...colconBuildCmd],
options,
false
);
if (!skipTests) {
await runTests(
colconCommandPrefix,
options,
testPackageSelection,
colconExtraArgs,
coverageIgnorePattern
);
} else {
core.info("Skipping tests");
}
if (importToken !== "") {
// Unset config so that it doesn't leak to other actions
await execShellCommand(
[
`/usr/bin/git config --global --unset-all url.https://x-access-token:${importToken}@github.com.insteadof`,
],
options
);
}
}
async function run(): Promise<void> {
try {
await run_throw();
} catch (error) {
let errorMessage = "Unknown error";
if (error instanceof Error) {
errorMessage = error.message;
}
core.setFailed(errorMessage);
}
}
run();