Files
pezkuwi-sdk/.claude/WORKFLOW_PLAN.md
T
pezkuwichain 49485a882c fix: Add workspace dependencies for vendored pezkuwi-subxt and zombienet-sdk
- Add all missing workspace dependencies required by vendor crates
- Include external crates: scale-*, sp-core, sc-chain-spec, kube, etc.
- Include subxt dependencies: smoldot, web-time, wasm-bindgen, etc.
- Regenerate umbrella crate with updated dependencies
- Apply zepter std feature propagation fixes to vendor crates
- Apply rustfmt formatting to vendor and pezframe files
2025-12-23 09:37:11 +03:00

201 lines
7.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Pezkuwi SDK - CI Workflow Düzeltme Planı
> Bu dosya Claude oturumları arasında sürekliliği sağlamak için oluşturulmuştur.
> Her oturum başında bu dosyayı oku ve kaldığın yerden devam et.
## Son Güncelleme
- **Tarih:** 2024-12-22
- **Son Tamamlanan:** Vendor integration (pezkuwi-subxt, pezkuwi-zombienet-sdk)
- **Aktif Görev:** FAZ 1 - CI Yeşil Işık (umbrella check sırada)
---
## DURUM TABLOSU
### checks.yml (3 job)
| Job | Durum | Komut | Notlar |
|-----|-------|-------|--------|
| cargo-clippy | ✅ TAMAMLANDI | `RUSTFLAGS="-D warnings" SKIP_WASM_BUILD=1 cargo clippy --all-targets --all-features --locked --workspace --quiet` | 36 dosya düzeltildi |
| check-try-runtime | ⏳ BEKLEMEDE | Workflow'dan kontrol et | |
| check-core-crypto-features | ⏳ BEKLEMEDE | `check-features-variants.sh` | |
### checks-quick.yml (10 job)
| Job | Durum | Komut | Notlar |
|-----|-------|-------|--------|
| fmt | ✅ TAMAMLANDI | `cargo fmt --all -- --check` | rustfmt.toml stable-only yapıldı, 898 dosya formatlandı |
| check-toml-format | ✅ TAMAMLANDI | `taplo format --check --config .config/taplo.toml` | 10 dosya düzeltildi |
| check-zepter | ✅ TAMAMLANDI | `zepter run check` | 18 feature propagation düzeltildi |
| check-workspace | ✅ TAMAMLANDI | `python3 .github/scripts/check-workspace.py .` | 606 crate, 6919 link doğrulandı |
| check-dependency-rules | ✅ TAMAMLANDI | `python3 .github/scripts/deny-git-deps.py .` | Git deps path'e çevrildi |
| check-umbrella | ⏳ BEKLEMEDE | `python3 scripts/generate-umbrella.py` | Sırada |
| test-rust-features | ⏳ BEKLEMEDE | `.gitlab/rust-features.sh .` | |
| check-markdown | ⏳ BEKLEMEDE | `markdownlint --config .github/.markdownlint.yaml --ignore target .` | |
| check-fail-ci | ⏳ BEKLEMEDE | `rg "FAIL-CI" --type rust` | Basit, muhtemelen OK |
| check-readme | ⏳ BEKLEMEDE | `.github/scripts/check-missing-readme-generation.sh` | |
### check-links.yml (1 job)
| Job | Durum | Komut | Notlar |
|-----|-------|-------|--------|
| link-checker | ⏳ BEKLEMEDE | `lychee --config .config/lychee.toml './**/*.rs'` | 0 hata bekleniyor |
### tests-misc.yml (11 job)
| Job | Durum | Notlar |
|-----|-------|--------|
| test-full-crypto-feature | ⏳ BEKLEMEDE | |
| test-pezframe-examples-compile-to-wasm | ⏳ BEKLEMEDE | |
| test-pezframe-ui | ⏳ BEKLEMEDE | |
| test-deterministic-wasm | ⏳ BEKLEMEDE | |
| cargo-check-benches | ⏳ BEKLEMEDE | |
| test-node-metrics | ⏳ BEKLEMEDE | |
| check-tracing | ⏳ BEKLEMEDE | |
| check-metadata-hash | ⏳ BEKLEMEDE | |
| cargo-check-each-crate | ⏳ BEKLEMEDE | |
| cargo-check-all-crate-macos | ⏳ BEKLEMEDE | macOS gerekli |
### build-misc.yml (3 job)
| Job | Durum | Notlar |
|-----|-------|--------|
| build-runtimes-polkavm | ⏳ BEKLEMEDE | |
| check-revive-stable-uapi-polkavm | ⏳ BEKLEMEDE | |
| build-pez-subkey | ⏳ BEKLEMEDE | |
---
## ÇALIŞMA SİSTEMİ
### Her Workflow Job İçin:
1. **Test Et:** Komutu local'de çalıştır
2. **Hata Analizi:** Çıktıyı analiz et
3. **Düzelt:** Hataları rebrand kurallarına uygun düzelt
4. **Tekrar Test:** Düzeltme sonrası tekrar çalıştır
5. **İşaretle:** Bu dosyada durumu güncelle
### Düzeltme Kuralları (CLAUDE_RULES.md'den):
- ASLA rebrand'i geri alma
- Terminoloji koruması:
- polkadot → pezkuwi
- substrate → bizinikiwi
- cumulus → pezcumulus
- westend → zagros
- rococo → pezkuwichain
- parachain → teyrchain
---
## TAMAMLANAN DÜZELTMELER
### 2024-12-22: Oturum 1 - Clippy Düzeltmeleri
**Dosya 1:** `pezcumulus/pezkuwi-omni-node/tests/extra_subcommand_parsing_test.rs`
- Sorun: deprecated `cargo_bin` function
- Çözüm: `#![allow(deprecated)]` + `assert_cmd::Command` kullanımı
**Dosya 2-27:** `**/tests/*.rs` (27 dosya)
- Sorun: deprecated `cargo_bin` import
- Çözüm: Tüm dosyalara `#![allow(deprecated)]` eklendi
**Dosya 28:** `pezkuwi/zombienet-sdk-tests/tests/smoke/coretime_revenue.rs`
- Sorun: `uninlined_format_args`
- Çözüm: `log::info!("{:?}", sale)``log::info!("{sale:?}")`
**Dosya 29-31:** `pezkuwi/zombienet-sdk-tests/tests/teyrchains/weights.rs`
- Sorun: `uninlined_format_args` (3 yer)
- Çözüm: Format string'leri inline edildi
**Dosya 32:** `bizinikiwi/pezframe/revive/rpc/src/tests.rs`
- Sorun: Subxt API değişiklikleri (fetch signature, StorageValue)
- Çözüm: `fetch(&query, ())` ve `.decode()?` eklendi
**Dosya 33:** `pezkuwi/pezpallets/validator-pool/src/mock.rs`
- Sorun: `advance_era` unused
- Çözüm: `#[allow(dead_code)]` eklendi
**Dosya 34:** `pezkuwi/pezpallets/validator-pool/src/tests.rs`
- Sorun: `len() > 0``!is_empty()`
- Çözüm: Clippy önerisine uyuldu
**Dosya 35:** `pezcumulus/teyrchains/pezpallets/identity-kyc/src/mock.rs`
- Sorun: `new_test_ext_empty` unused
- Çözüm: `#[allow(dead_code)]` eklendi
**Dosya 36:** `bizinikiwi/pezframe/examples/tasks/src/tests.rs`
- Sorun: Field name `i``_i`
- Çözüm: `AddNumberIntoTotal { i:``AddNumberIntoTotal { _i:`
### 2024-12-22: Oturum 2 - Format ve Vendor Entegrasyonu
**rustfmt.toml Stable Migration:**
- Sorun: rustfmt.toml nightly-only özellikler kullanıyordu
- Çözüm: 9 nightly özellik kaldırıldı (imports_granularity, wrap_comments, vb.)
- Etki: 898 dosya yeniden formatlandı
**Vendor Entegrasyonu:**
- `pezkuwi-subxt``vendor/pezkuwi-subxt/` (monorepo'ya dahil)
- `pezkuwi-zombienet-sdk``vendor/pezkuwi-zombienet-sdk/` (monorepo'ya dahil)
- Git bağımlılıkları path bağımlılıklarına çevrildi
- Test/example crate'ler vendor'dan çıkarıldı (gereksiz)
- 606 crate workspace'e dahil edildi
- 6919 internal dependency link doğrulandı
**Zepter Düzeltmeleri (18 adet):**
- runtime-benchmarks feature propagation (8 düzeltme)
- std feature propagation (4 düzeltme)
- try-runtime feature propagation (5 düzeltme)
- serde feature propagation (1 düzeltme)
---
## SONRAKİ ADIMLAR
1. **check-umbrella** çalıştır
2. **test-rust-features** çalıştır
3. **check-markdown** çalıştır
4. **check-fail-ci** çalıştır
5. **check-readme** çalıştır
---
## KRİTİK DOSYA YOLLARI
```
/home/mamostehp/pezkuwi-sdk/
├── .github/workflows/ # Workflow dosyaları
│ ├── checks.yml
│ ├── checks-quick.yml
│ └── check-links.yml
├── .config/
│ ├── lychee.toml # Link checker config
│ └── taplo.toml # TOML formatter config
├── .claude/
│ ├── CLAUDE_RULES.md # Rebrand kuralları
│ ├── TERMINOLOGY.md # Terminoloji mapping
│ └── WORKFLOW_PLAN.md # Bu dosya
├── scripts/
│ └── generate-umbrella.py # Umbrella crate generator
├── .gitlab/
│ ├── ensure-deps.sh # Dependency rules
│ └── rust-features.sh # Feature testing
├── vendor/
│ ├── pezkuwi-subxt/ # Vendored subxt (10 crate)
│ ├── pezkuwi-zombienet-sdk/ # Vendored zombienet (6 crate)
│ └── ss58-registry/ # SS58 registry
└── crate_placeholders/ # 150 placeholder crate
```
---
## GIT COMMIT GEÇMİŞİ
1. `fix: Resolve cargo clippy errors and add CI workflow plan` - 1393 dosya
2. `style: Migrate to stable-only rustfmt configuration` - 898 dosya
3. `feat: Vendor pezkuwi-subxt and pezkuwi-zombienet-sdk into monorepo` - 386 dosya
---
## NOTLAR
- Her büyük değişiklikten önce git commit yap
- Hata düzeltirken rebrand'i bozma
- Çıktıları takip et, 100+ hata varsa kategorize et
- GitHub repolarını archive et: pezkuwi-subxt, pezkuwi-zombienet-sdk