Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Koenig <[email protected]>
  • Loading branch information
ko3n1g committed Jan 21, 2025
1 parent 65fa80e commit 85b419c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/build-test-publish-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

name: Build, test, and publish a PyPi wheel (to testpypi)

on:
on:
push:
branches:
- main
Expand All @@ -28,22 +28,19 @@ jobs:
build-test-publish-wheel:
uses: NVIDIA/NeMo-FW-CI-templates/.github/workflows/[email protected]
with:
image-name: nemo_container
image-name: nemo_run_container
dockerfile: Dockerfile
image-label: nemo-aligner
image-label: nemo-run
build-args: |
IMAGE_LABEL=nemo-aligner
MAX_JOBS=32
ALIGNER_COMMIT=${{ github.event.pull_request.head.sha || github.sha }}
IMAGE_LABEL=nemo-run
NEMO_RUN_COMMIT=${{ github.event.pull_request.head.sha || github.sha }}
prune-filter-timerange: 24h
dry-run: true
python-package: nemo_aligner
container-workdir: /opt/NeMo-Aligner
python-package: nemo_run/src
container-workdir: /opt/NeMo-Run
environment: public
secrets:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
SLACK_WEBHOOK_ADMIN: ${{ secrets.SLACK_WEBHOOK_ADMIN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}


2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ git init
git remote add origin https://github.com/NVIDIA/NeMo-Aligner.git
git fetch --all
git fetch origin '+refs/pull/*/merge:refs/remotes/pull/*/merge'
git checkout $CURATOR_COMMIT
git checkout $NEMO_RUN_COMMIT
EOF

FROM python:3.12
Expand Down

0 comments on commit 85b419c

Please sign in to comment.