Skip to content

Commit

Permalink
Make flaky test optional (NVIDIA#10459)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo-garay authored Sep 11, 2024
1 parent 79c4786 commit 0df6610
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/cicd-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5083,10 +5083,10 @@ jobs:
rm -rf examples/llm/gpt_pretrain_results
rm -rf examples/llm/gpt_index_mappings
L2_NeMo_2_SSM_Pretraining:
OPTIONAL_L2_NeMo_2_SSM_Pretraining:
needs: [cicd-test-container-setup]
uses: ./.github/workflows/_test_template.yml
if: contains(fromJSON(needs.cicd-test-container-setup.outputs.test_to_run), 'L2_NeMo_2_SSM_Pretraining') || needs.cicd-test-container-setup.outputs.all == 'true'
if: contains(fromJSON(needs.cicd-test-container-setup.outputs.test_to_run), 'OPTIONAL_L2_NeMo_2_SSM_Pretraining') || needs.cicd-test-container-setup.outputs.all == 'true'
with:
RUNNER: self-hosted-azure
SCRIPT: |
Expand All @@ -5099,11 +5099,12 @@ jobs:
AFTER_SCRIPT: |
rm -rf /home/TestData/nlp/megatron_mamba/nemo-ux-mamba/cicd_test_pretrain
IS_OPTIONAL: true

L2_NeMo_2_SSM_Finetuning:
OPTIONAL_L2_NeMo_2_SSM_Finetuning:
needs: [cicd-test-container-setup]
uses: ./.github/workflows/_test_template.yml
if: contains(fromJSON(needs.cicd-test-container-setup.outputs.test_to_run), 'L2_NeMo_2_SSM_Finetuning') || needs.cicd-test-container-setup.outputs.all == 'true'
if: contains(fromJSON(needs.cicd-test-container-setup.outputs.test_to_run), 'OPTIONAL_L2_NeMo_2_SSM_Finetuning') || needs.cicd-test-container-setup.outputs.all == 'true'
with:
RUNNER: self-hosted-azure
SCRIPT: |
Expand All @@ -5116,6 +5117,7 @@ jobs:
AFTER_SCRIPT: |
rm -rf /home/TestData/nlp/megatron_mamba/nemo-ux-mamba/cicd_test_sft
IS_OPTIONAL: true

Nemo_CICD_Test:
needs:
Expand Down Expand Up @@ -5248,8 +5250,8 @@ jobs:
#- OPTIONAL_L2_Stable_Diffusion_Training
- L2_NeMo_2_GPT_Pretraining_no_transformer_engine
- L2_NeMo_2_GPT_DDP_Param_Parity_check
- L2_NeMo_2_SSM_Pretraining
- L2_NeMo_2_SSM_Finetuning
#- OPTIONAL_L2_NeMo_2_SSM_Pretraining
#- OPTIONAL_L2_NeMo_2_SSM_Finetuning
if: always()
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 0df6610

Please sign in to comment.