Skip to content

Commit 494347a

Browse files
authored
Isaac Sim Update
1 parent 533a160 commit 494347a

File tree

377 files changed

+8830
-4130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+8830
-4130
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@
2020
*.stl filter=lfs diff=lfs merge=lfs -text
2121
*.pdf filter=lfs diff=lfs merge=lfs -text
2222
*.ico filter=lfs diff=lfs merge=lfs -text
23-
source/extensions/isaacsim.asset.browser/cache/isaacsim.asset.browser.cache.json filter=lfs diff=lfs merge=lfs -text
2423
source/apps/cache/isaacsim.asset.browser.cache.json filter=lfs diff=lfs merge=lfs -text

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ body:
4444

4545
- type: input
4646
attributes:
47-
label: Isaac Sim version
47+
label: Isaac Sim version
4848
description: It can be found in the `VERSION` file located in either the repository or the build folder.
4949
placeholder: e.g. 5.0.0
5050
validations:
5151
required: true
5252
- type: input
5353
attributes:
54-
label: Operating System (OS)
54+
label: Operating System (OS)
5555
placeholder: e.g. Ubuntu 24.04
5656
validations:
5757
required: true

.github/workflows/build-and-test.yml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,39 @@ jobs:
4949
git clean -fdx
5050
git reset --hard HEAD
5151
52+
- name: Make all files user-writable
53+
run: |
54+
chmod -R u+w .
55+
5256
- name: Build and Test Isaac Sim
5357
run: |
5458
set -euo pipefail # Exit on error, undefined vars, pipe failures
5559
set -x # Print commands being executed
60+
61+
echo "::group::Build Isaac Sim"
5662
# Build Isaac Sim
5763
touch .eula_accepted
64+
find . -type f -iname "*.sh" -exec chmod +x {} +
5865
chmod +x ./build.sh
66+
chmod +x ./repo.sh
5967
./build.sh
6068
if [ $? -ne 0 ]; then
6169
echo 'BUILD FAILED with exit code ' $?
6270
exit 1
6371
fi
64-
65-
# Test Isaac Sim
66-
cd _build/linux-x86_64/release
67-
touch .eula_accepted
68-
chmod +x ./isaac-sim.sh
69-
./isaac-sim.sh --no-window --/app/quitAfter=500 --/app/file/ignoreUnsavedOnExit=1
72+
echo "::endgroup::"
73+
74+
# echo "::group::Test Isaac Sim"
75+
# # Test Isaac Sim
76+
# chmod +x ./repo.sh
77+
# cd _build/linux-x86_64/release
78+
# touch .eula_accepted
79+
# find . -type f -iname "*.sh" -exec chmod +x {} +
80+
# chmod +x ./exts/isaacsim.ros2.bridge/bin/isaacsim.ros2.bridge.check
81+
# chmod +x ./post_install.sh
82+
# chmod +x ./warmup.sh
83+
# chmod +x ./isaac-sim.sh
84+
# ./post_install.sh
85+
# # ./warmup.sh
86+
# ./isaac-sim.sh --no-window --/app/quitAfter=500 --/app/file/ignoreUnsavedOnExit=1
87+
# echo "::endgroup::"

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,12 @@ docs/source/*
8686
# ignore the cache
8787
data/cache
8888

89+
# ignore browser cache
90+
source/extensions/isaacsim.asset.browser/cache/isaacsim.asset.browser.cache.json
91+
8992
symbols.txt
9093
/.vs
9194

92-
# petert: temp file i create for debugging
93-
output.txt
9495

9596
# OVAT files
9697
gcn_local.yml
@@ -152,9 +153,8 @@ Temp_Config*.json
152153
.nvcode.json
153154

154155
# Ignore packman verification results
155-
packman_verification_results.json
156-
packman_full_results.json
157156
packman_full_results.csv
157+
packman_private_results.csv
158158

159159
# Ignore results from banned word check
160160
results.json

CITATION.cff

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
cff-version: 1.2.0
2+
title: Isaac Sim
3+
message: >-
4+
If you use this software, please cite it using the
5+
metadata from this file.
6+
type: software
7+
authors:
8+
- name: NVIDIA
9+
identifiers:
10+
- type: url
11+
value: 'https://github.com/isaac-sim/IsaacSim'
12+
repository-code: 'https://github.com/isaac-sim/IsaacSim'
13+
url: >-
14+
https://docs.isaacsim.omniverse.nvidia.com/latest/index.html
15+
abstract: >-
16+
NVIDIA Isaac Sim™ is a reference application built on
17+
NVIDIA Omniverse that enables developers to develop,
18+
simulate, and test AI-driven robots in physically-based
19+
virtual environments.
20+
license: Apache-2.0
21+
version: 5.0.0

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,10 @@ for broader dissemination of your work.
217217

218218
Licensing terms can be found in the [License File](LICENSE).
219219

220+
## Citation
221+
222+
To cite Isaac Sim, click on "Cite this repository" in the right sidebar of the [Isaac Sim GitHub repository](https://github.com/isaac-sim/IsaacSim) landing page and select one of the listed citation entries.
223+
220224
## Contributing
221225

222226
We do not support direct community contributions at the moment.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.0-rc.23
1+
5.0.0-rc.35

deps/isaac-sim.packman.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<project toolsVersion="5.6">
22
<dependency name="nv_ros2_humble" linkPath="../_build/target-deps/nv_ros2_humble">
3-
<package name="nv_ros2" version="humble_py_3.11_20250603_49d4870-linux-x86_64_release" platforms="manylinux_2_35_x86_64"/>
4-
<package name="nv_ros2" version="humble_py_3.11_20250604_windows-x86_64_release.7z" platforms="windows-x86_64"/>
3+
<package name="nv_ros2" version="humble_py_3.11_20250617_97d81e9_manylinux_2_35_x86_64_release" platforms="manylinux_2_35_x86_64"/>
4+
<package name="nv_ros2" version="humble_py_3.11_20250617_97d81e9_windows-x86_64_release" platforms="windows-x86_64"/>
55
</dependency>
66
<dependency name="nv_ros2_jazzy" linkPath="../_build/target-deps/nv_ros2_jazzy">
7-
<package name="nv_ros2" version="jazzy_py_3.11_20250603_49d4870-linux-x86_64_release" platforms="manylinux_2_35_x86_64"/>
8-
<package name="nv_ros2" version="jazzy_py_3.11_20250604_windows-x86_64_release.7z" platforms="windows-x86_64"/>
7+
<package name="nv_ros2" version="jazzy_py_3.11_20250617_97d81e9_manylinux_2_35_x86_64_release" platforms="manylinux_2_35_x86_64"/>
8+
<package name="nv_ros2" version="jazzy_py_3.11_20250617_97d81e9_windows-x86_64_release" platforms="windows-x86_64"/>
99
</dependency>
1010
<dependency name="lula" linkPath="../_build/target-deps/lula">
1111
<package name="lula" version="v0.10.1_f39b9da.linux-x86_64.release" platforms="manylinux_2_35_x86_64"/>
@@ -29,7 +29,7 @@
2929
<package name="nlohmann_json" version="3.11.3-a3143f5-0"/>
3030
</dependency>
3131
<dependency name="generic_model_output_${config}" linkPath="../_build/target-deps/generic_model_output/${platform_target}/${config}">
32-
<package name="generic-model-output" version="107.3.1+production.201676.74a0c37b.gl.${platform_target_abi}.${config}"/>
32+
<package name="generic-model-output" version="107.3.1+production.206797.8131b85d.gl.${platform_target_abi}.${config}"/>
3333
</dependency>
3434
<dependency name="rapidjson" linkPath="../_build/target-deps/rapidjson">
3535
<package name="rapidjson" version="5.2.1-5-b4cf59b6" />

deps/kit-sdk-deps.packman.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
<dependency name="usd_ext_physics_${config}" linkPath="../_build/target-deps/usd_ext_physics/${config}" />
4444
<dependency name="gsl" linkPath="../_build/target-deps/gsl" />
4545

46-
<import path="../_build/${platform_target}/${config}/kit/dev/deps/linbuild.packman.xml">
47-
<filter include="linbuild" linkPath="../_build/host-deps/linbuild" tags="non-redist" />
48-
</import>
46+
<!-- The doctest package imported from kit-kernel is not yet available. -->
47+
<dependency name="doctest" linkPath="../_build/target-deps/doctest">
48+
<package name="doctest" version="2.4.5+nv1-3" />
49+
</dependency>
4950
</project>

deps/kit-sdk.packman.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<project toolsVersion="5.6">
22
<dependency name="kit_sdk_${config}" linkPath="../_build/${platform_target}/${config}/kit" tags="${config} non-redist">
3-
<package name="kit-kernel" version="107.3.0+feature.199947.b0a86421.gl.${platform_target_abi}.${config}" platforms="manylinux_2_35_aarch64 manylinux_2_35_x86_64 windows-x86_64" />
3+
<package name="kit-kernel" version="107.3.1+isaac.206797.8131b85d.gl.${platform_target_abi}.${config}" platforms="manylinux_2_35_aarch64 manylinux_2_35_x86_64 windows-x86_64" />
44
<!-- <source path="/home/path/to/kit/kit/_build/${platform_target}/${config}"/> -->
55
</dependency>
66
</project>

0 commit comments

Comments
 (0)