CI: replace deprecated docker-image resource with oci-build-task#220
Conversation
|
Too many files changed? Review this PR in Change Stack to see how the pieces fit before you dive in. No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughThis PR refactors the CI pipeline to replace a local Docker build approach with OCI image task execution. The 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Replace the
docker-imageresource in thebuild-bpm-cijob with the canonical Concourse pattern:concourse/oci-build-taskto build, then the existingbpm-ci-registry-image(registry-imagetype) to push.The
docker-imageresource bundles a deprecateddocker buildtoolchain that emits this warning on every run:The new pattern uses BuildKit, streams full stdout/stderr to the build log, and pushes via a Go-native registry client (no docker daemon).