Pins Isaac Sim image to previous image from 05/11#5600
Conversation
Greptile SummaryThis PR stabilises CI by pinning the Isaac Sim image to the known-good 05/11 digest instead of the floating
Confidence Score: 5/5Safe to merge — both changes are minimal, targeted CI configuration fixes with no impact on production code. The image digest pin is a well-understood stabilisation technique that makes CI deterministic, and the timeout increase is a conservative adjustment to prevent spurious failures. Neither change touches application logic or test correctness. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[CI Workflow triggered] --> B[Load config.yaml via yq]
B --> C{Image tag}
C -->|Before: latest-develop| D[Pull latest upstream image\n⚠️ may pick up broken image]
C -->|After: latest-develop@sha256:...| E[Pull pinned 05/11 digest\n✅ stable, reproducible]
E --> F[Run tests]
F --> G{test_articulation.py}
G -->|Before: 1500s timeout| H[May time out on slower image]
G -->|After: 3000s timeout| I[Sufficient headroom for pinned image]
Reviews (2): Last reviewed commit: "increase timeout" | Re-trigger Greptile |
| # workflow via yq and exposed as job outputs (see e.g. .github/workflows/build.yaml). | ||
| isaacsim_image_name: nvcr.io/nvidian/isaac-sim | ||
| isaacsim_image_tag: latest-develop | ||
| isaacsim_image_tag: latest-develop@sha256:0dd49a1121b297dc85eee7777a9c528318683dbe03b29fd01f2059ac1b099301 |
There was a problem hiding this comment.
Temporary pin needs a follow-up tracking item
This digest pin is a good short-term fix, but the PR description and checklist are largely unfilled, making it easy to forget to revert or update the pin once the upstream latest-develop image is healthy again. Consider opening a follow-up issue (or leaving a # TODO: comment referencing the upstream issue) so the floating tag is restored and CI doesn't silently drift further behind the current image over time.
Description
Reverts CI image to previous Isaac Sim image from 05/11 as the new image is causing timeouts in our CI.
TODO: investigate failing cause of the new image.
Type of change
Checklist
pre-commitchecks with./isaaclab.sh --formatconfig/extension.tomlfileCONTRIBUTORS.mdor my name already exists there