nightly-publish fix errors for missing tools#549
Merged
Conversation
switch to less expensive instances Signed-off-by: Jonathan Swartz <jonathan@jswartz.info>
harrism
approved these changes
Mar 17, 2026
This was referenced Apr 20, 2026
swahtz
added a commit
that referenced
this pull request
Apr 27, 2026
* The PR #549 downsized runner from `m6a.8xlarge` to `t3a.large` but since then fvdb buld failed with an error: "runner lost communication" * Same happened after manually run with set: ``` - name: Build fvdb env: CMAKE_BUILD_PARALLEL_LEVEL: "1" MAX_JOBS: "1" ``` * With reverted changes the job succeeded again: https://github.com/openvdb/fvdb-core/actions/runs/24730340925 * Following table includes measured runs tested in this PR, sorted by estimated $/nightly: | instance | vCPU / RAM | $/hr (on-demand) | min/cell | $/cell | **$/nightly** | |---|---|---|---|---|---| | `t3a.large` | 2 / 8 GiB | $0.075 | n/a (OOM) | n/a | n/a | | `m6a.xlarge` | 4 / 16 GiB | $0.173 | ~75 | $0.22 | **~$1.73** | | `r6a.large` | 2 / 16 GiB | $0.113 | ~130 | $0.24 | ~$1.96 | | `c6a.4xlarge` | 16 / 32 GiB | $0.612 | ~28 | $0.29 | ~$2.28 | | `m6a.2xlarge` | 8 / 32 GiB | $0.346 | ~55 (partial, some OOM) | ~$0.32 | ~$2.54 | | `m7a.2xlarge` | 8 / 32 GiB | $0.44 | ~50 | $0.37 | ~$2.93 | | **`m6a.4xlarge`** | **16 / 64 GiB** | **$0.691** | **39.5** | **$0.47** | **~$3.73** | | `m6a.8xlarge` | 32 / 128 GiB | $1.38 | **22** | $0.51 | ~$4.05 | | `r6a.2xlarge` | 8 / 64 GiB | $0.454 | **100.5** | $0.76 | ~$6.09 | * Chosen configuration: `m6a.4xlarge`, running on cheaper instances would require changes to avoid OOM --------- Signed-off-by: Petra Hapalova <phapalova@nvidia.com> Co-authored-by: Jonathan Swartz <jonathan@jswartz.info>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes the nightly-publish job which is missing some installed system tools. Also changed instance types for less expensive ones.