You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix issue with ARM64, refactor info messages (#41)
* Fix issue with ARM64, refactor info messages
* Update runner version to the latest
* Update dist
Co-authored-by: GitHub Actions <runner@fv-az90-102.oknmvzgco44exlvyi5fejcivhg.gx.internal.cloudapp.net>
reject(`A timeout of ${timeoutMinutes} minutes is exceeded. Please ensure your EC2 instance has access to the Internet.`);
55318
+
reject(`A timeout of ${timeoutMinutes} minutes is exceeded. Your AWS EC2 instance was not able to register itself in GitHub as a new self-hosted runner.`);
55318
55319
}
55319
55320
55320
55321
if (runner && runner.status === 'online') {
55321
-
core.info(`GitHub self-hosted runner ${runner.name} is created and ready to use`);
55322
+
core.info(`GitHub self-hosted runner ${runner.name} is registered and ready to use`);
55322
55323
clearInterval(interval);
55323
55324
resolve();
55324
55325
} else {
55325
55326
waitSeconds += retryIntervalSeconds;
55326
-
core.info('Waiting...');
55327
+
core.info('Checking...');
55327
55328
}
55328
55329
}, retryIntervalSeconds * 1000);
55329
55330
});
@@ -55332,7 +55333,7 @@ async function waitForRunnerCreated(label) {
reject(`A timeout of ${timeoutMinutes} minutes is exceeded. Please ensure your EC2 instance has access to the Internet.`);
71
+
reject(`A timeout of ${timeoutMinutes} minutes is exceeded. Your AWS EC2 instance was not able to register itself in GitHub as a new self-hosted runner.`);
72
72
}
73
73
74
74
if(runner&&runner.status==='online'){
75
-
core.info(`GitHub self-hosted runner ${runner.name} is created and ready to use`);
75
+
core.info(`GitHub self-hosted runner ${runner.name} is registered and ready to use`);
76
76
clearInterval(interval);
77
77
resolve();
78
78
}else{
79
79
waitSeconds+=retryIntervalSeconds;
80
-
core.info('Waiting...');
80
+
core.info('Checking...');
81
81
}
82
82
},retryIntervalSeconds*1000);
83
83
});
@@ -86,5 +86,5 @@ async function waitForRunnerCreated(label) {
0 commit comments