Commit Graph

58 Commits (54adcbb95915ec834d8317204025f93979bcb5b7)

Author SHA1 Message Date
Frostebite 0497076eba pr feedback 2026-01-17 04:52:35 +00:00
Frostebite a60739249f pr feedback 2026-01-17 03:52:38 +00:00
Frostebite 6f413e1f6a pr feedback 2026-01-13 14:49:16 +00:00
Frostebite 516ee804d2 Unify k8s, localstack, and localDocker jobs into single job with separate steps for better disk space management 2026-01-13 03:02:49 +00:00
Frostebite d83baeedb8 Improve LocalStack readiness checks and add retries for S3 bucket creation 2026-01-13 02:58:31 +00:00
Frostebite 2e93ecc896 Run LocalStack as managed Docker step for better resource control 2026-01-10 23:47:31 +00:00
Frostebite 56efd54765 Add host disk cleanup before k3d cluster creation to prevent evictions 2026-01-10 23:45:33 +00:00
Frostebite 64667ffdbf pr feedback - ensure pre-pull pod ephemeral storage is fully reclaimed before tests 2026-01-07 01:24:23 +00:00
Frostebite b121e56be9 pr feedback - pre-pull Unity image at cluster setup to avoid runtime disk pressure evictions 2026-01-05 21:03:25 +00:00
Frostebite 6953319f7d pr feedback - improve pod scheduling diagnostics and remove eviction thresholds that prevent scheduling 2026-01-05 17:09:58 +00:00
Frostebite 4f59e1729d pr feedback 2026-01-03 15:36:15 +00:00
Frostebite 9f60a75602 Harden k3d cleanup to avoid disk exhaustion 2025-12-29 23:40:59 +00:00
Frostebite 9eb6e27272 pr feedback - pre-pull Unity image into k3d node 2025-12-29 19:00:26 +00:00
Frostebite 45e7ed0fcb pr feedback - fix taint removal syntax 2025-12-29 18:26:09 +00:00
Frostebite 355551c72e pr feedback - remove ephemeral-storage request for tests 2025-12-29 18:09:21 +00:00
Frostebite f4d28fa6d2 pr feedback - handle evictions and wait for disk pressure condition 2025-12-29 18:01:33 +00:00
Frostebite ed0d2c13b6 pr feedback - fix cleanup loop timeout 2025-12-29 17:37:03 +00:00
Frostebite 6d42b8f6f2 pr feedback 2025-12-29 17:14:31 +00:00
Frostebite 775395d4d3 pr feedback 2025-12-29 17:13:18 +00:00
Frostebite 5acc6c83ee pr feedback 2025-12-29 16:35:49 +00:00
Frostebite d908dedd39 pr feedback 2025-12-29 16:29:44 +00:00
Frostebite be25574fba pr feedback 2025-12-28 17:34:41 +00:00
Frostebite 3aeabb90f8 pr feedback 2025-12-28 16:47:47 +00:00
Frostebite d87300ff50 pr feedback 2025-12-27 16:42:11 +00:00
Frostebite ec089529c7 pr feedback 2025-12-13 08:16:49 +00:00
Frostebite 29b5b94bcd pr feedback 2025-12-13 07:53:30 +00:00
Frostebite 35c6d45981 pr feedback 2025-12-11 02:59:45 +00:00
Frostebite 8824ea4f18 pr feedback 2025-12-10 23:05:29 +00:00
Frostebite 939aa6b7d5 PR feedback 2025-12-06 05:30:54 +00:00
Frostebite a9c76d0324 PR feedback 2025-12-06 01:49:26 +00:00
Frostebite f0730fa4a3 pr feedback 2025-12-06 01:39:02 +00:00
Frostebite bbf666a752 PR feedback 2025-12-06 01:22:11 +00:00
Frostebite bfac73b479 PR feedback 2025-12-06 01:08:34 +00:00
Frostebite dedb8810ff pr feedback 2025-12-06 01:04:14 +00:00
Frostebite 459b9298b2 PR feedback 2025-12-06 00:53:27 +00:00
Frostebite f9ef711978 PR feedback 2025-12-06 00:29:16 +00:00
Frostebite 956b2e4324 PR feedback 2025-12-05 18:08:29 +00:00
Frostebite 69731babfc PR feedback 2025-12-05 17:20:01 +00:00
Frostebite 86aae1e20f PR feedback 2025-12-05 16:37:09 +00:00
Frostebite beee035be3 PR feedback 2025-12-05 16:20:41 +00:00
Frostebite adcdf1b77a PR feedback 2025-12-05 16:20:31 +00:00
Frostebite 6de312ee1a
Update .github/workflows/cloud-runner-integrity.yml
Co-authored-by: Gabriel Le Breton <lebreton.gabriel@gmail.com>
2025-12-04 22:53:25 +00:00
Frostebite 1b988ce73b
Update .github/workflows/cloud-runner-integrity.yml
Co-authored-by: Gabriel Le Breton <lebreton.gabriel@gmail.com>
2025-12-04 22:53:14 +00:00
Frostebite 945dec774c fix 2025-12-04 22:32:47 +00:00
Frostebite e8c48c5d7b fix 2025-12-04 22:23:05 +00:00
Frostebite 464a9d1265
feat: Add dynamic provider loader with improved error handling (#734)
* feat: Add dynamic provider loader with improved error handling

- Create provider-loader.ts with function-based dynamic import functionality
- Update CloudRunner.setupSelectedBuildPlatform to use dynamic loader for unknown providers
- Add comprehensive error handling for missing packages and interface validation
- Include test coverage for successful loading and error scenarios
- Maintain backward compatibility with existing built-in providers
- Add ProviderLoader class wrapper for backward compatibility
- Support both built-in providers (via switch) and external providers (via dynamic import)

* fix: Resolve linting errors in provider loader

- Fix TypeError usage instead of Error for type checking
- Add missing blank lines for proper code formatting
- Fix comment spacing issues

* build: Update built artifacts after linting fixes

- Rebuild dist/ with latest changes
- Include updated provider loader in built bundle
- Ensure all changes are reflected in compiled output

* build: Update built artifacts after linting fixes

- Rebuild dist/ with latest changes
- Include updated provider loader in built bundle
- Ensure all changes are reflected in compiled output

* build: Update built artifacts after linting fixes

- Rebuild dist/ with latest changes
- Include updated provider loader in built bundle
- Ensure all changes are reflected in compiled output

* build: Update built artifacts after linting fixes

- Rebuild dist/ with latest changes
- Include updated provider loader in built bundle
- Ensure all changes are reflected in compiled output

* fix: Fix AWS job dependencies and remove duplicate localstack tests

- Update AWS job to depend on both k8s and localstack jobs
- Remove duplicate localstack tests from k8s job (now only runs k8s tests)
- Remove unused cloud-runner-localstack job from main integrity check
- Fix AWS SDK warnings by using Uint8Array(0) instead of empty string for S3 PutObject
- Rename localstack-and-k8s job to k8s job for clarity

* feat: Implement provider loader dynamic imports with GitHub URL support

- Add URL detection and parsing utilities for GitHub URLs, local paths, and NPM packages
- Implement git operations for cloning and updating repositories with local caching
- Add automatic update checking mechanism for GitHub repositories
- Update provider-loader.ts to support multiple source types with comprehensive error handling
- Add comprehensive test coverage for all new functionality
- Include complete documentation with usage examples
- Support GitHub URLs: https://github.com/user/repo, user/repo@branch
- Support local paths: ./path, /absolute/path
- Support NPM packages: package-name, @scope/package
- Maintain backward compatibility with existing providers
- Add fallback mechanisms and interface validation

* feat: Implement provider loader dynamic imports with GitHub URL support

- Add URL detection and parsing utilities for GitHub URLs, local paths, and NPM packages
- Implement git operations for cloning and updating repositories with local caching
- Add automatic update checking mechanism for GitHub repositories
- Update provider-loader.ts to support multiple source types with comprehensive error handling
- Add comprehensive test coverage for all new functionality
- Include complete documentation with usage examples
- Support GitHub URLs: https://github.com/user/repo, user/repo@branch
- Support local paths: ./path, /absolute/path
- Support NPM packages: package-name, @scope/package
- Maintain backward compatibility with existing providers
- Add fallback mechanisms and interface validation

* feat: Fix provider-loader tests and URL parser consistency

- Fixed provider-loader test failures (constructor validation, module imports)
- Fixed provider-url-parser to return consistent base URLs for GitHub sources
- Updated error handling to use TypeError consistently
- All provider-loader and provider-url-parser tests now pass
- Fixed prettier and eslint formatting issues

* feat: Implement provider loader dynamic imports with GitHub URL support

- Add URL detection and parsing utilities for GitHub URLs, local paths, and NPM packages
- Implement git operations for cloning and updating repositories with local caching
- Add automatic update checking mechanism for GitHub repositories
- Update provider-loader.ts to support multiple source types with comprehensive error handling
- Add comprehensive test coverage for all new functionality
- Include complete documentation with usage examples
- Support GitHub URLs: https://github.com/user/repo, user/repo@branch
- Support local paths: ./path, /absolute/path
- Support NPM packages: package-name, @scope/package
- Maintain backward compatibility with existing providers
- Add fallback mechanisms and interface validation

* feat: Implement provider loader dynamic imports with GitHub URL support

- Add URL detection and parsing utilities for GitHub URLs, local paths, and NPM packages
- Implement git operations for cloning and updating repositories with local caching
- Add automatic update checking mechanism for GitHub repositories
- Update provider-loader.ts to support multiple source types with comprehensive error handling
- Add comprehensive test coverage for all new functionality
- Include complete documentation with usage examples
- Support GitHub URLs: https://github.com/user/repo, user/repo@branch
- Support local paths: ./path, /absolute/path
- Support NPM packages: package-name, @scope/package
- Maintain backward compatibility with existing providers
- Add fallback mechanisms and interface validation

* m

* m
2025-09-13 00:54:21 +01:00
Frostebite 98963da430 ci(k8s): remove in-cluster LocalStack; use host LocalStack via localhost:4566 for all; rely on k3d host mapping 2025-09-08 01:31:42 +01:00
Frostebite fd74d25ac9 ci(k8s): run LocalStack inside k3s and use in-cluster endpoint; scope host LocalStack to local-docker 2025-09-07 23:45:55 +01:00
Frostebite a0cb4ff559 ci: add reusable cloud-runner-integrity workflow; wire into Integrity; disable legacy pipeline triggers 2025-09-07 22:59:53 +01:00
Frostebite edc1df78b3 ci: add reusable cloud-runner-integrity workflow; wire into Integrity; disable legacy pipeline triggers 2025-09-07 18:59:18 +01:00