Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/gpu_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
# - ".github/workflows/gpu_tests.yml"
# - "modelopt/**"
# - "tests/gpu/**"
# - "pyproject.toml"
# - "setup.py"
# - "tox.ini"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/multi_version_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- ".github/workflows/multi_version_unit_tests.yml"
- "modelopt/**"
- "tests/unit/**"
- "pyproject.toml"
- "setup.py"
- "tox.ini"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
push:
branches: [main, release/*]

# Cancel previous runs if new commit is pushed to the same PR
# Cancel previous runs if new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/partial_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- ".github/workflows/partial_unit_tests.yml"
- "modelopt/**"
- "tests/unit/**"
- "pyproject.toml"
- "setup.py"
- "tox.ini"

Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,22 @@ on:
- ".github/workflows/unit_tests.yml"
- "modelopt/**"
- "tests/unit/**"
- "pyproject.toml"
- "setup.py"
- "tox.ini"
push:
branches: [main, release/*]
paths:
- ".github/workflows/unit_tests.yml"
- "modelopt/**"
- "tests/unit/**"
- "pyproject.toml"
- "setup.py"
- "tox.ini"

# Cancel previous runs if new commit is pushed to the same PR
# Cancel previous runs if new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Expand All @@ -33,6 +43,7 @@ jobs:
fail_ci_if_error: true
verbose: true
unit-tests-windows:
if: github.event_name == 'pull_request'
runs-on: windows-latest
timeout-minutes: 30
steps:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
[![Documentation](https://img.shields.io/badge/Documentation-latest-brightgreen.svg?style=flat)](https://nvidia.github.io/TensorRT-Model-Optimizer)
[![version](https://img.shields.io/pypi/v/nvidia-modelopt?label=Release)](https://pypi.org/project/nvidia-modelopt/)
[![license](https://img.shields.io/badge/License-Apache%202.0-blue)](./LICENSE)
[![codecov](https://codecov.io/github/NVIDIA/TensorRT-Model-Optimizer/graph/badge.svg?token=r1bw4LC1WH)](https://codecov.io/github/NVIDIA/TensorRT-Model-Optimizer)

[Examples](#examples) |
[Documentation](https://nvidia.github.io/TensorRT-Model-Optimizer) |
Expand Down
Loading