Skip to content
Draft
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
10 changes: 5 additions & 5 deletions .github/workflows/nvi-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
nvi-correctness-tests:
if: github.event_name == 'merge_group'
#if: github.event_name == 'merge_group'
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've disabled the option to run the CI job on merge queue only for testing purposes, happy to add it back after the CI is green.

runs-on: ubuntu-latest
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Run tests
run: |
modal run dev.modal.tests::liger_correctness_tests
modal run -m dev.modal.tests::liger_correctness_tests

nvi-convergence-tests:
if: github.event_name == 'merge_group'
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Run tests
run: |
modal run dev.modal.tests::liger_convergence_tests
modal run -m dev.modal.tests::liger_convergence_tests

nvi-correctness-tests-with-transformers-4-52-0:
if: github.event_name == 'merge_group'
Expand All @@ -91,7 +91,7 @@ jobs:

- name: Run tests
run: |
modal run dev.modal.tests::liger_oldest_v4_correctness_tests
modal run -m dev.modal.tests::liger_oldest_v4_correctness_tests


nvi-convergence-tests-with-transformers-4-52-0:
Expand All @@ -117,4 +117,4 @@ jobs:

- name: Run tests
run: |
modal run dev.modal.tests::liger_oldest_v4_convergence_tests
modal run -m dev.modal.tests::liger_oldest_v4_convergence_tests
Loading