Skip to content

Commit

Permalink
Merge branch 'ershi/user-fewer-processes-mac-ci' into 'main'
Browse files Browse the repository at this point in the history
Try capping --maxjobs to 4 for MacOS CI

See merge request omniverse/warp!1011
  • Loading branch information
shi-eric committed Jan 22, 2025
2 parents fee3fa6 + a07d34b commit 48215e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
pip install --no-cache-dir --upgrade numpy coverage[toml] usd-core
pip install --no-cache-dir .
- name: Run Tests
run: python -m warp.tests --junit-report-xml rspec.xml --coverage --coverage-xml coverage.xml -s autodetect
run: python -m warp.tests --maxjobs 4 --junit-report-xml rspec.xml --coverage --coverage-xml coverage.xml -s autodetect
- name: Test Summary
uses: test-summary/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ mac-x86_64 test:
- python -m pip install --upgrade usd-core coverage[toml]
- echo -e "\\e[0Ksection_end:`date +%s`:install_dependencies\\r\\e[0K"
script:
- python -m warp.tests --junit-report-xml rspec.xml --coverage --coverage-xml coverage.xml -s autodetect --failfast
- python -m warp.tests --maxjobs 4 --junit-report-xml rspec.xml --coverage --coverage-xml coverage.xml -s autodetect --failfast

# Test the Linux release build in an environment with minimal Python dependencies installed
linux-x86_64 test minimal:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/ci/additional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ mac-x86_64 test:
- python -m pip install --upgrade usd-core coverage[toml]
- echo -e "\\e[0Ksection_end:`date +%s`:install_dependencies\\r\\e[0K"
script:
- python -m warp.tests --junit-report-xml rspec.xml --coverage --coverage-xml coverage.xml -s autodetect --failfast
- python -m warp.tests --maxjobs 4 --junit-report-xml rspec.xml --coverage --coverage-xml coverage.xml -s autodetect --failfast
2 changes: 1 addition & 1 deletion .gitlab/ci/debug-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ mac-x86_64 test:
- python -m pip install --upgrade usd-core
- echo -e "\\e[0Ksection_end:`date +%s`:install_dependencies\\r\\e[0K"
script:
- python -m warp.tests --junit-report-xml rspec.xml -s autodetect --failfast
- python -m warp.tests --maxjobs 4 --junit-report-xml rspec.xml -s autodetect --failfast

# ==============================================================================
# Packaging Jobs
Expand Down

0 comments on commit 48215e2

Please sign in to comment.