-
Notifications
You must be signed in to change notification settings - Fork 313
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
fix(docker): Enable build on schedule event #7617
Conversation
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7617 +/- ##
=========================================
Coverage 68.05% 68.05%
Complexity 2023 2023
=========================================
Files 344 344
Lines 16736 16736
Branches 2371 2371
=========================================
Hits 11389 11389
Misses 4364 4364
Partials 983 983
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
229296d
to
7607ccf
Compare
7607ccf
to
4a4aeeb
Compare
8b6789e
to
f95dc9c
Compare
b469340
to
07b287d
Compare
07b287d
to
e95f1c9
Compare
@fviernau @tsteenbe @sschuberth Anyone can push this one before tomorrow 4AM schedule ? |
@fviernau The pr is clean, can we go with approval now ? |
To reduce the frequency of docker builds, on commit e3bbcdb the workflow moved from push based to schedule based. The registry publishing was attached to push and worflow_dispatch events, therefore, any schedule event was ignored. Since builds now happens once a day and in case of version tag, registry publish is now set to be valid on all build cases. For extended image, the time schedule set was removed and only when runtime main docker workflow has their build complete triggers the extended workflow using wokrflow_run dependency. Signed-off-by: Helio Chissini de Castro <[email protected]>
e95f1c9
to
0de9d53
Compare
After move to scheduled build, main images are building only on push and workflow_dispatch events.
Noticed after some mistake PR done on Ort Github CI repository.