Skip to content
Draft
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
2 changes: 0 additions & 2 deletions .github/workflows/_update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
run: echo "date=$(date +%F)" | tee -a "$GITHUB_OUTPUT"

update-lockfile:
environment: nemo-ci
runs-on: linux-amd64-cpu16
needs: [pre-flight]
env:
Expand Down Expand Up @@ -96,7 +95,6 @@ jobs:
create-pr:
needs: [update-lockfile, pre-flight]
runs-on: ubuntu-latest
environment: main
env:
SOURCE_BRANCH: ${{ needs.pre-flight.outputs.bump-branch }}
TARGET_BRANCH: ${{ inputs.target-branch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test-publish-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
runner: ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2-container
container-options: "--gpus all --runtime=nvidia"
secrets:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/r')) && secrets.SVC_PYPI_TOKEN || secrets.SVC_PYPI_TEST_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_RELEASE_ENDPOINT }}
SLACK_WEBHOOK_ADMIN: ${{ secrets.SLACK_WEBHOOK_ADMIN }}
GH_TOKEN: ${{ secrets.PAT }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/cicd-approve-test-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@ name: Approve Test Queue

on:
schedule:
- cron: '*/5 * * * *' # Runs every 5 minutes
workflow_dispatch: # Allows manual triggering
- cron: "*/5 * * * *" # Runs every 5 minutes
workflow_dispatch: # Allows manual triggering

jobs:
approve-queue:
runs-on: ubuntu-latest
environment: main
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/cicd-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ jobs:
&& !cancelled()
runs-on: ${{ matrix.runner }}
name: ${{ matrix.script }}
environment: nemo-ci
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -143,7 +142,6 @@ jobs:
&& !cancelled()
runs-on: ${{ matrix.runner }}
name: ${{ matrix.script }}
environment: nemo-ci
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -184,7 +182,6 @@ jobs:
|| needs.pre-flight.outputs.force_run_all == 'true'
)
&& !cancelled()
environment: nemo-ci
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -210,7 +207,6 @@ jobs:
needs: [cicd-unit-tests-trtllm, pre-flight]
runs-on: ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
name: ${{ matrix.is_optional && 'PLEASEFIXME_' || '' }}${{ matrix.script }}
environment: nemo-ci
if: |
(
success()
Expand Down Expand Up @@ -245,7 +241,6 @@ jobs:
needs: [cicd-unit-tests-vllm, pre-flight]
runs-on: ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
name: ${{ matrix.is_optional && 'PLEASEFIXME_' || '' }}${{ matrix.script }}
environment: nemo-ci
if: |
(
success()
Expand Down Expand Up @@ -278,7 +273,6 @@ jobs:
needs: [pre-flight, cicd-unit-tests-trtllm, cicd-unit-tests-vllm]
runs-on: ${{ needs.pre-flight.outputs.runner_prefix }}-gpu-x2
name: ${{ matrix.is_optional && 'PLEASEFIXME_' || '' }}${{ matrix.script }}
environment: nemo-ci
if: |
(
success()
Expand Down Expand Up @@ -359,7 +353,6 @@ jobs:
)
&& needs.pre-flight.outputs.is_ci_workload == 'false'
&& !cancelled()
environment: nemo-ci
steps:
- name: Generate fake coverage report
uses: actions/github-script@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
no-build-isolation: true
runner: nemo-ci-aws-gpu-x2-container
secrets:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/r')) && secrets.SVC_PYPI_TOKEN || secrets.SVC_PYPI_TEST_TOKEN }}
SLACK_WEBHOOK_ADMIN: ${{ secrets.SLACK_WEBHOOK_ADMIN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_RELEASE_ENDPOINT }}
PAT: ${{ secrets.PAT }}
Expand Down
Loading