-
Notifications
You must be signed in to change notification settings - Fork 338
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
Nightly builds #4505
Merged
Merged
Nightly builds #4505
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
0ea3cea
rename `main` to `nightly`
jprochazk 0596f97
add nightly build
jprochazk 5ec6182
move common examples build logic into crate
jprochazk ff18552
support multiple channels
jprochazk 9f70cd1
set channel
jprochazk b90195b
build `detect_and_track_objects` on nightly
jprochazk 26d585c
build more examples
jprochazk f9069f9
fix lint
jprochazk f891f79
rename jobs + add `workflow_dispatch` trigger
jprochazk e07287c
add re_examples to `ARCHITECTURE.md`
jprochazk 3f4fb1f
remove stable diffusion
jprochazk 73d439a
remove signed distance fields
jprochazk 3eb8329
fix version requirement in depth guided stable diffusion + add it back
jprochazk 3c6abba
use `main` channel in publish web
jprochazk 5125bd5
don't deploy docs on nightly
jprochazk a396ab2
don't use pixi
jprochazk 1901a33
`--no-input` when building examples
jprochazk deba0fe
remove `mesh-to-sdf` and `segment-anything` from the repo
jprochazk 4794b50
remove docker container + use pixi
jprochazk 96099fa
set manifest urls properly
jprochazk e5e1abf
dont upload commits on nightly build
jprochazk 6d7ac40
set default manifest url in nightly build
jprochazk cfc9e5a
temp
jprochazk 8f0d1d4
Merge branch 'main' into jan/nightly-builds
jprochazk 2662b0c
override url to `version/nightly` on nightly channel
jprochazk 7dd2c58
upload nightly
jprochazk c5ec9d5
Merge branch 'main' into jan/nightly-builds
jprochazk 412e005
set schedule
jprochazk 6ab8cfa
Print the final list of generated .rrd files and their sizes
emilk 2a4a519
Improve initial printout of example candidates
emilk cf2e509
Add missing dependency
emilk cbd0744
update pr template
jprochazk 004f79f
clarify what timezone schedule is in
jprochazk d2a4a72
merge example builds
jprochazk ca8ebe3
update usage
jprochazk afce3e0
update ARCHITECTURE.md
jprochazk cc072cd
update example frontmatter
jprochazk 9b4e334
fix versions
jprochazk 6a461b5
document frontmatter `channel`
jprochazk 4aac2b1
spacing
jprochazk d210ec1
rename error variable
jprochazk a32e90e
update error message
jprochazk 8d04e42
only set default manifest url on nightly
jprochazk 2d415d6
temp
jprochazk 1b1bd70
fix track_sizes not depending on web build
jprochazk 319489c
back to schedule only
jprochazk 447630d
Merge branch 'main' into jan/nightly-builds
jprochazk 60e864c
sort
jprochazk 0d1b795
Merge branch 'main' into jan/nightly-builds
jprochazk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Nightly | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | ||
# 12:15 UTC, every day | ||
- cron: "15 12 * * *" | ||
|
||
jobs: | ||
build-web: | ||
name: "Build Web" | ||
uses: ./.github/workflows/reusable_build_web.yml | ||
with: | ||
CONCURRENCY: nightly | ||
CHANNEL: nightly | ||
secrets: inherit | ||
|
||
upload-web: | ||
name: "Upload Web" | ||
needs: [build-web] | ||
uses: ./.github/workflows/reusable_upload_web.yml | ||
with: | ||
CONCURRENCY: nightly | ||
NIGHTLY: true | ||
secrets: inherit | ||
|
||
build-wheel-linux: | ||
name: "Build & Upload Wheels" | ||
uses: ./.github/workflows/reusable_build_and_upload_wheels.yml | ||
with: | ||
CONCURRENCY: nightly-linux | ||
PLATFORM: linux | ||
WHEEL_ARTIFACT_NAME: linux-wheel | ||
MODE: "pr" | ||
secrets: inherit | ||
|
||
build-examples: | ||
name: "Build Examples" | ||
needs: [build-wheel-linux] | ||
uses: ./.github/workflows/reusable_build_examples.yml | ||
with: | ||
CONCURRENCY: nightly | ||
CHANNEL: nightly | ||
WHEEL_ARTIFACT_NAME: linux-wheel | ||
secrets: inherit | ||
|
||
upload-examples: | ||
name: "Upload Examples" | ||
needs: [build-examples] | ||
uses: ./.github/workflows/reusable_upload_examples.yml | ||
with: | ||
CONCURRENCY: nightly | ||
NIGHTLY: true | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Ok, so "nightly" means… slightly after noon 😆 I guess it's always night somewhere
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 was thinking this way we get to react to any build failures