Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/.harness/Hello_World_Java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@ pipeline:
- step:
type: BuildAndPushDockerRegistry
name: Build and push image to DockerHub
timeout: 2h
timeout: 4h
identifier: Build_and_push_image_to_DockerHub
spec:
connectorRef: account.nofar_dockerhub
repo: bluebbb/javademo
tags:
- <+pipeline.sequenceId>
optimize: true
infrastructure:
type: KubernetesDirect
spec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public boolean process(HttpRequest request, HttpResponse response) {

private void appendLink(String fileName, String uri, PrintWriter writer) {
// writer.append(String.format("<li>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:#ff9290;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:#ff9990;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));
// writer.append(String.format("<li style='list-style-type:circle; padding:4px; background:yellow;'>\n<a href=\"%s/%s\">%s</a>\n</li>\n", uri, fileName, fileName));

}
Expand Down