[TSM.ID].[11031972] FIX: xcu-screen-capture unused vars + PISAHKAN bare-metal workflow (sequential, bukan parallel) agar VPS tidak overload

This commit is contained in:
TSM.ID
2026-05-25 15:09:17 +07:00
parent f3851e0d6d
commit 012ee564b0
4 changed files with 147 additions and 18 deletions
+7 -4
View File
@@ -1,19 +1,22 @@
# [TSM.ID].[11031972] PXE : Platform X Ecosystem I [3 Module - Bare Metal - REAL LIVE -]
# 3Z Pipeline : Zero Error | Zero Warning | Zero Downtime
# TERPISAH dari 142 Module — MENUNGGU 142 Module selesai dulu (needs: dependency)
name: "[TSM.ID].[11031972] PXE : Platform X Ecosystem I [3 Module - Bare Metal - REAL LIVE -]"
run-name: "[TSM.ID].[11031972] PXE : Platform X Ecosystem I [3 Module - Bare Metal - REAL LIVE -]"
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
workflow_run:
workflows:
- "[TSM.ID].[11031972] PXE : Platform X Ecosystem I [142 Module - REAL LIVE -]"
types:
- completed
jobs:
bare-metal-check:
name: "3Z: Bare Metal (3 Module)"
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
env:
LANG: C.UTF-8
LC_ALL: C.UTF-8
+8 -6
View File
@@ -57,7 +57,7 @@ jobs:
fi
echo "=== WATERMARK [TSM.ID].[11031972]: VERIFIED ==="
- name: "[3Z] Module Count Verification"
- name: "[3Z] Module Count Verification (145 total)"
run: |
set -e
cd workspace/xcom-ultra
@@ -65,14 +65,16 @@ jobs:
DIRS=$(ls -d xcu-*/ 2>/dev/null | wc -l)
echo "Cargo.toml members: $MEMBERS"
echo "Physical directories: $DIRS"
echo "=== MODULE COUNT: $MEMBERS ==="
if [ "$DIRS" -ne 145 ]; then
echo "WARNING: Expected 145 directories, found $DIRS"
fi
echo "=== MODULE COUNT: $DIRS ==="
- name: "[PKX] Unit Tests"
run: |
set -e
cd workspace/xcom-ultra
export PATH="$HOME/.cargo/bin:/usr/local/bin:$PATH"
cargo test --workspace --lib --exclude xcu-ebpf --exclude xcu-ebpf-loader --exclude xcu-omega 2>&1 || echo "Some tests need runtime deps"
echo "=== UNIT TESTS: COMPLETED ==="
export RUSTFLAGS="-D warnings"
cargo test --workspace --lib --exclude xcu-ebpf --exclude xcu-ebpf-loader --exclude xcu-omega 2>&1
echo "=== UNIT TESTS: PASSED ==="