-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft: Backend implementation for server-side image builds #131
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #131 +/- ##
==========================================
- Coverage 56.60% 55.28% -1.33%
==========================================
Files 62 67 +5
Lines 3132 3545 +413
==========================================
+ Hits 1773 1960 +187
- Misses 1359 1585 +226
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
build_jobs: dict[str, dict] = {} | ||
|
||
|
||
class BuildJobStatus(str, Enum): # noqa: UP042 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could use StrEnum
instead of Str, Enum
server side, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see this code ending up in the real implementation, but in principle yes :)
This PR adds a prototype for the backend API for server-side image builds.
Usage:
See issue #43