Skip to content

Commit

Permalink
Merge branch 'og-develop' into issue-templates
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen authored Oct 12, 2024
2 parents 8ebf4a8 + 36feeb2 commit d68ab74
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 17 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/examples-as-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,19 @@ jobs:
submodules: true
path: omnigibson-src

- name: Install dev requirements
working-directory: omnigibson-src
run: pip install -r requirements-dev.txt
# These are temporarily disabled due to some errors they cause where some
# unknown important dependency has its version changed and Isaac Sim will
# no longer launch properly. The result is that if dependencies change,
# the tests will stop working. This is a temporary fix until we can figure
# out how to fix this issue.

# - name: Install dev requirements
# working-directory: omnigibson-src
# run: pip install -r requirements-dev.txt

- name: Install
working-directory: omnigibson-src
run: pip install -e .
# - name: Install
# working-directory: omnigibson-src
# run: pip install -e .

- name: Generate example tests
working-directory: omnigibson-src
Expand Down
18 changes: 13 additions & 5 deletions .github/workflows/profiling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,19 @@ jobs:
- name: Checkout source
uses: actions/checkout@v3

- name: Install dev requirements
run: pip install -r requirements-dev.txt

- name: Install
run: pip install -e .
# These are temporarily disabled due to some errors they cause where some
# unknown important dependency has its version changed and Isaac Sim will
# no longer launch properly. The result is that if dependencies change,
# the tests will stop working. This is a temporary fix until we can figure
# out how to fix this issue.

# - name: Install dev requirements
# working-directory: omnigibson-src
# run: pip install -r requirements-dev.txt

# - name: Install
# working-directory: omnigibson-src
# run: pip install -e .

- name: Run performance benchmark
run: bash scripts/profiling.sh
Expand Down
21 changes: 15 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,22 @@ jobs:
submodules: true
path: omnigibson-src

- name: Install dev requirements
working-directory: omnigibson-src
run: pip install -r requirements-dev.txt
# These are temporarily disabled due to some errors they cause where some
# unknown important dependency has its version changed and Isaac Sim will
# no longer launch properly. The result is that if dependencies change,
# the tests will stop working. This is a temporary fix until we can figure
# out how to fix this issue.

- name: Install
working-directory: omnigibson-src
run: pip install -e .
# - name: Install dev requirements
# working-directory: omnigibson-src
# run: pip install -r requirements-dev.txt

# - name: Install
# working-directory: omnigibson-src
# run: pip install -e .

- name: Print env
run: printenv

- name: Run tests
working-directory: omnigibson-src
Expand Down

0 comments on commit d68ab74

Please sign in to comment.