Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"name": "microshift-ci",
"source": "./plugins/microshift-ci",
"description": "MicroShift CI Automation",
"version": "1.5.0"
"version": "1.5.1"
},
{
"name": "microshift-dev",
Expand Down
2 changes: 1 addition & 1 deletion plugins/microshift-ci/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "microshift-ci",
"description": "MicroShift CI Automation",
"version": "1.5.0",
"version": "1.5.1",
"author": {
"name": "ggiguash"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@

CSS = """\
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f0f2f5; color: #333; display: flex; height: 100vh; overflow: hidden; }
html, body { height: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f0f2f5; color: #333; display: flex; min-height: 600px; }
.sidebar { width: 300px; min-width: 300px; background: #1a1a2e; color: #e0e0e0; overflow-y: auto; padding: 16px 0; display: flex; flex-direction: column; }
.sidebar h1 { font-size: 1.1em; padding: 0 16px 12px; border-bottom: 1px solid #2a2a4e; color: #fff; }
.sidebar .build-group { margin-top: 12px; }
Expand Down Expand Up @@ -58,7 +59,7 @@
.vm-tab { padding: 8px 16px; cursor: pointer; font-size: 0.88em; color: #6c757d; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.15s, border-color 0.15s; }
.vm-tab:hover { color: #333; }
.vm-tab.active { color: #1a1a2e; border-bottom-color: #e94560; font-weight: 600; }
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 60vh; color: #6c757d; }
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 400px; color: #6c757d; }
.empty-state h2 { font-size: 1.3em; margin-bottom: 8px; }
@media (max-width: 900px) {
.chart-grid { grid-template-columns: 1fr; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ process_hypervisor_dir() {
local pcp_dir="$1"

local build_id
build_id=$(echo "${pcp_dir}" | sed -nE 's|.*/artifacts/([0-9]*)/artifacts/.*|\1|p')
local rel="${pcp_dir#"${WORKDIR}/artifacts/"}"
build_id=$(echo "${rel}" | cut -d/ -f1)
Comment thread
suleymanakbas91 marked this conversation as resolved.
if [[ -z "${build_id}" ]]; then
echo " SKIP: cannot extract build_id from hypervisor path" >&2
return 0
Expand Down