Skip to content

Commit

Permalink
test fix - kubernetes - name typo in github yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
frostebite committed Aug 17, 2023
1 parent 964e77c commit 2b1e4cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src/model/cloud-runner/remote-client/remote-client-logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ export class RemoteClientLogger {
CloudRunnerLogger.log(`Collected Logs`);
let hashedLogs = fs.readFileSync(RemoteClientLogger.LogFilePath).toString();

hashedLogs = await CloudRunnerSystem.Run(`md5sum ${RemoteClientLogger.LogFilePath}`);
const directory = process.cwd();
process.chdir('/home');
hashedLogs = await CloudRunnerSystem.Run(`md5sum job-log.txt`);
process.chdir(directory);

for (let index = 0; index < 3; index++) {
CloudRunnerLogger.log(`LOGHASH: ${hashedLogs}`);
Expand Down

0 comments on commit 2b1e4cb

Please sign in to comment.