Skip to content

Commit

Permalink
Merge branch 'ershi/CODEOWNERS-expt' into 'master'
Browse files Browse the repository at this point in the history
Add a CODEOWNERS file

See merge request omniverse/warp!497
  • Loading branch information
mmacklin committed May 16, 2024
2 parents 1aa3042 + 0c60645 commit 7457221
Show file tree
Hide file tree
Showing 5 changed files with 102 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# CI/CD Pipeline Configuration
# ==============================================================================

include: /.gitlab-ci/common.yml
include: /.gitlab/common.yml

workflow:
rules:
Expand Down Expand Up @@ -344,7 +344,7 @@ python 3.7 test:
stage: child pipelines
needs: [trigger python 3.X test pipelines]
trigger:
include: /.gitlab-ci/additional-tests.yml
include: /.gitlab/additional-tests.yml
extends:
- .trigger_common
variables:
Expand All @@ -354,7 +354,7 @@ python 3.8 test:
stage: child pipelines
needs: [trigger python 3.X test pipelines]
trigger:
include: /.gitlab-ci/additional-tests.yml
include: /.gitlab/additional-tests.yml
extends:
- .trigger_common
variables:
Expand Down Expand Up @@ -385,7 +385,7 @@ debug build and test:
stage: child pipelines
needs: [trigger debug build and test pipeline]
trigger:
include: /.gitlab-ci/debug-build-and-test.yml
include: /.gitlab/debug-build-and-test.yml
extends:
- .trigger_common

Expand Down
96 changes: 96 additions & 0 deletions .gitlab/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# Copyright (c) 2024 NVIDIA CORPORATION. All rights reserved.
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.

# This CODEOWNERS file is only used on the internal GitLab
# Ordering matters: https://docs.gitlab.com/ee/user/project/codeowners/#define-more-specific-owners-for-more-specifically-defined-files-or-directories

# At present this is the only required approval. The rest are optional (^).
[Public API] @mmacklin
/warp/__init__.py
/warp/builtins.py
/warp/config.py
/warp/constants.py
/warp/stubs.py
/warp/thirdparty/
/docs/
/licenses/
/warp/examples/
/CONTRIBUTING.md
/CHANGELOG.md
/README.md
/SECURITY.md

^[CI/CD] @ershi @ncapens
/.github/
/.gitlab/
/warp/tests/
/warp/thirdparty/unittest_parallel.py
/.gitlab-ci.yml
/.pre-commit-config.yaml
.gitignore
.gitattributes

^[Code Generation] @ncapens @mmacklin
/warp/codegen.py

^[Build and Deployment] @ncapens
/warp/build.py
/warp/build_dll.py
/build_docs.py
/build_lib.py
/build_llvm.py
/PACKAGE-INFO.yaml
/PACKAGING.md
/pyproject.toml
/repo.toml
/setup.py
/VERSION.md
/tools/
/deps/

^[Simulation Module] @eheiden @mmacklin
/warp/sim/
/warp/examples/sim/
/warp/optim/sgd.py
/warp/render/render_opengl.py
/warp/render/utils.py

^[FEM Module] @gdaviet
/warp/fem/
/warp/examples/fem/
/warp/tests/test_fem.py

^[Linear Algebra] @gdaviet
/warp/optim/linear.py
/warp/sparse.py
/warp/tests/test_linear_solvers.py
/warp/tests/test_sparse.py

^[Native C++/CUDA] @mmacklin @lwawrzyniak @ncapens
/warp/native/

^[Volumes] @gklar
/warp/native/nanovdb/
/warp/native/volume*
/warp/tests/test_volume_write.py
/warp/tests/test_volume.py

^[Kit Extensions] @ccrouzet @zcorse
/exts/
/warp/render/render_usd.py

^[Interoperability] @lwawrzyniak @zcorse
/warp/dlpack.py
/warp/jax_experimental.py
/warp/jax.py
/warp/fabric.py
/warp/torch.py
/warp/thirdparty/dlpack.py
/warp/tests/test_dlpack.py
/warp/tests/test_jax.py
/warp/tests/test_torch.py
/warp/tests/test_fabricarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# trigger conditions. It is not run in merge request pipelines.
# ==============================================================================

include: /.gitlab-ci/common.yml
include: /.gitlab/common.yml

workflow:
rules:
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# trigger conditions. It is not run in merge request pipelines.
# ==============================================================================

include: /.gitlab-ci/common.yml
include: /.gitlab/common.yml

workflow:
rules:
Expand Down

0 comments on commit 7457221

Please sign in to comment.