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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: CI
on: push
on:
push:
branches:
- "pull-request/[0-9]+"
env:
TRT_RTX_FILENAME: TensorRT-RTX-1.1.1.26.Linux.x86_64-gnu.cuda-12.9.tar.gz
TRTRTX_INSTALL_DIR: /opt/tensorrt_rtx
Expand All @@ -15,7 +18,8 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: 3.9
version: "0.8.22"
python-version: "3.9"

- name: Set up Python
run: uv python install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import tarfile
from pathlib import Path

# Common environment variables
# Shared constants
TRT_RTX_BASE_URL = "https://developer.nvidia.com/downloads/trt/rtx_sdk/secure/1.1"
TRT_RTX_FILENAME = os.environ.get("TRT_RTX_FILENAME","TensorRT-RTX-1.1.1.26.Linux.x86_64-gnu.cuda-12.9.tar.gz")
TRTRTX_INSTALL_DIR = os.environ.get("TRTRTX_INSTALL_DIR", "/opt/tensorrt_rtx")
Expand Down