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
12 changes: 8 additions & 4 deletions .github/actions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ runs:
export PYTHONPATH=$(pwd)
export NEMORUN_HOME=$(pwd)
export NCCL_DEBUG=INFO
pip install --no-cache-dir uv
uv sync --only-group test
pip install --no-cache-dir "uv<0.9.29"
uv venv .venv
uv cache clean
uv sync --no-cache --only-group test
uv run python tests/test_utils/python_scripts/launch_nemo_run_workload.py \
--scope unit-tests \
--model unit-tests \
Expand Down Expand Up @@ -197,8 +199,10 @@ runs:

export PYTHONPATH=$(pwd)
export NEMORUN_HOME=$(pwd)
pip install --no-cache-dir uv
uv sync --only-group test
pip install --no-cache-dir "uv<0.9.29"
uv venv .venv
uv cache clean
uv sync --no-cache --only-group test
uv run python tests/test_utils/python_scripts/launch_nemo_run_workload.py \
${ARGS[@]} \
--model ${{ inputs.model }} \
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/oncall-rotation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
# Slack token for updating the Slack usergroup
SLACK_TOKEN: ${{ secrets.ONCALL_SLACK_TOKEN }}
run: |
pip install --no-cache-dir uv
pip install --no-cache-dir "uv<0.9.29"
uv venv .venv
uv cache clean
uv sync --no-cache
uv run --with slack-sdk python .github/scripts/oncall_manager.py rotate

- name: Commit and Push changes
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sync-team-usergroups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ jobs:
GH_TOKEN: ${{ secrets.NVIDIA_MCORE_ONCALL_TOKEN || secrets.PAT || secrets.GITHUB_TOKEN }}
SLACK_TOKEN: ${{ secrets.ONCALL_SLACK_TOKEN }}
run: |
pip install --no-cache-dir uv
pip install --no-cache-dir "uv<0.9.29"
uv venv .venv
uv cache clean
uv sync --no-cache
uv run --with slack-sdk python .github/scripts/sync_team_usergroups.py
Loading