Skip to content

Commit

Permalink
Testing github actions with gradle
Browse files Browse the repository at this point in the history
- Update gradle task to include task details in payload for checksum calc
  • Loading branch information
lemm-leto committed Feb 5, 2024
1 parent 3074a15 commit 441b0e5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ tasks.register('checksum') {
}
}

println(new JsonOutput().toJson(testFiles))
new File(projectDir, "checksum.json").text = new JsonOutput().toJson(testFiles)
var payload = [
stage: 'Stage 0',
module: 'Module 2',
task: 'Task 1',
testFiles: testFiles
]
new File(projectDir, "payload.json").text = new JsonOutput().toJson(payload)
}
}

0 comments on commit 441b0e5

Please sign in to comment.