Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(ci): update ci #405

Merged
merged 3 commits into from
Jan 17, 2025
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
43 changes: 41 additions & 2 deletions .github/workflows/demo_in_readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ env:
WORKSPACE_PREFIX: $(echo $GITHUB_WORKSPACE |cut -d '/' -f 1-4)
SLURM_PARTITION: llm_s

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
dataset-preparation:
runs-on: [t_cluster]
Expand All @@ -23,13 +27,23 @@ jobs:

- name: raw-chinese-data
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
sh ./ci_scripts/data/tokenizer_chinese.sh ${GITHUB_RUN_ID}-${GITHUB_JOB}
EOF

- name: alpaca-data
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
sh ./ci_scripts/data/tokenizer_alpaca.sh
EOF

train:
runs-on: [t_cluster]
Expand All @@ -44,28 +58,48 @@ jobs:
- name: slurm-train
id: basic_train
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
sh ./ci_scripts/train/slurm_train.sh ${GITHUB_RUN_ID}-${GITHUB_JOB}
EOF

- name: load_preset_ckpt
if: ${{ failure() && steps.basic_train.conclusion == 'failure' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
export PYTHONPATH=$PWD:$PYTHONPATH
sh ./ci_scripts/train/load_ckpt.sh 7B_load_preset_ckpt ${GITHUB_RUN_ID}-${GITHUB_JOB}
EOF

- name: load_new_ckpt
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
export PYTHONPATH=$PWD:$PYTHONPATH
sh ./ci_scripts/train/load_ckpt.sh 7B_load_new_ckpt ${GITHUB_RUN_ID}-${GITHUB_JOB}
rm -rf $GITHUB_WORKSPACE/llm_ckpts
EOF

- name: torchrun-train
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
sh ./ci_scripts/train/torchrun.sh ${GITHUB_RUN_ID}-${GITHUB_JOB}
rm -rf $GITHUB_WORKSPACE/llm_ckpts
EOF

convert-model-then-load:
runs-on: [t_cluster]
Expand All @@ -79,13 +113,18 @@ jobs:

- name: convert-model-then-load
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
export GITHUB_WORKSPACE=$GITHUB_WORKSPACE
export SLURM_PARTITION=$SLURM_PARTITION
source activate ${evo_env_torch21_flash2}
export PYTHONPATH=$PWD:$PYTHONPATH
sh ./ci_scripts/model/convert_to_hf.sh
cd ./hf_ckpt
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname --gpus-per-task=2 python ../ci_scripts/model/loaded_as_transformer.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname --gpus-per-task=2 python ../ci_scripts/model/loaded_as_transformer.py
exit_code=$?
cd ..
rm -rf $GITHUB_WORKSPACE/hf_ckpt
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF
86 changes: 60 additions & 26 deletions .github/workflows/e2e_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ env:
WORKSPACE_PREFIX: $(echo $GITHUB_WORKSPACE |cut -d '/' -f 1-4)
SLURM_PARTITION: llm_s

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
training_4GPU:
runs-on: [t_cluster]
Expand All @@ -23,11 +27,14 @@ jobs:

- name: training_4GPU
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=$jobname -n4 --ntasks-per-node=4 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_4GPU" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=\$jobname -n4 --ntasks-per-node=4 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_4GPU" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_8GPU_ISP:
runs-on: [t_cluster]
Expand All @@ -41,11 +48,14 @@ jobs:

- name: training_8GPU_ISP
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=ISP-${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_ISP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_ISP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_8GPU_ISP_CKPT:
runs-on: [t_cluster]
Expand All @@ -59,16 +69,17 @@ jobs:

- name: training_8GPU_ISP_CKPT
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=ISP_CKPT-${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_ISP_SAVE_CKPT" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_ISP_SAVE_CKPT" ./tests/test_training/test_loss.py

jobname=LOAD-${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_ISP_LOAD_CKPT" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_ISP_LOAD_CKPT" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_8GPU_4DP2TP:
strategy:
Expand All @@ -85,11 +96,14 @@ jobs:
- name: training_8GPU_4DP2TP_T
if: ${{ matrix.runner == 't_cluster' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2TP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2TP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_8GPU_4DP2TPSP:
strategy:
Expand All @@ -106,11 +120,13 @@ jobs:
- name: training_8GPU_4DP2TPSP_T
if: ${{ matrix.runner == 't_cluster' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2TPSP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2TPSP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_8GPU_4DP2PP:
strategy:
Expand All @@ -127,11 +143,14 @@ jobs:
- name: training_8GPU_4DP2PP_T
if: ${{ matrix.runner == 't_cluster' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2PP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2PP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_8GPU_4DP2PP_ZB:
runs-on: [t_cluster]
Expand All @@ -145,11 +164,14 @@ jobs:

- name: training_8GPU_4DP2PP_ZB
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2PP_ZB" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_8GPU_4DP2PP_ZB" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_16GPU_4DP2TP2PP_MTP:
strategy:
Expand All @@ -166,11 +188,14 @@ jobs:
- name: training_16GPU_4DP2TP2PP_MTP_T
if: ${{ matrix.runner == 't_cluster' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n16 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_16GPU_4DP2TP2PP_MTP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n16 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_16GPU_4DP2TP2PP_MTP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_16GPU_4DP2TP2PP_MSP:
strategy:
Expand All @@ -187,11 +212,14 @@ jobs:
- name: training_16GPU_4DP2TP2PP_MSP_T
if: ${{ matrix.runner == 't_cluster' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n16 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_16GPU_4DP2TP2PP_MSP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n16 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_16GPU_4DP2TP2PP_MSP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_16GPU_4DP2TP2PP_FSP:
strategy:
Expand All @@ -208,11 +236,14 @@ jobs:
- name: training_16GPU_4DP2TP2PP_FSP_T
if: ${{ matrix.runner == 't_cluster' }}
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n16 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_16GPU_4DP2TP2PP_FSP" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n16 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_16GPU_4DP2TP2PP_FSP" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_llama2:
strategy:
Expand All @@ -228,8 +259,11 @@ jobs:
- uses: actions/checkout@v3
- name: training_llama2_T
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_llama2" ./tests/test_training/test_loss.py
srun -p ${SLURM_PARTITION} --kill-on-bad-exit=1 --job-name=\$jobname -n8 --ntasks-per-node=8 --cpus-per-task=4 --gpus-per-task=1 pytest -s -v --color=yes -m "training_llama2" ./tests/test_training/test_loss.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF
21 changes: 15 additions & 6 deletions .github/workflows/monthly_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@ jobs:

- name: training_tp_norm_layer_msp
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=$jobname -N 1 -n 1 --gres=gpu:8 pytest -s -v --color=yes -m "check_norm_msp" ./tests/test_training/test_norm_weight.py
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=\$jobname -N 1 -n 1 --gres=gpu:8 pytest -s -v --color=yes -m "check_norm_msp" ./tests/test_training/test_norm_weight.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_tp_norm_layer_fsp:
runs-on: [t_cluster]
Expand All @@ -40,11 +43,14 @@ jobs:

- name: training_tp_norm_layer_fsp
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=$jobname -N 1 -n 1 --gres=gpu:8 pytest -s -v --color=yes -m "check_norm_fsp" ./tests/test_training/test_norm_weight.py
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=\$jobname -N 1 -n 1 --gres=gpu:8 pytest -s -v --color=yes -m "check_norm_fsp" ./tests/test_training/test_norm_weight.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

training_tp_norm_layer_isp:
runs-on: [t_cluster]
Expand All @@ -59,11 +65,14 @@ jobs:

- name: training_tp_norm_layer_isp
run: |
ssh ${USER}@${CI_HOST} bash << EOF
cd $GITHUB_WORKSPACE
source activate ${evo_env_torch21_flash2}
jobname=${GITHUB_RUN_ID}-${GITHUB_JOB}-${GITHUB_RUN_ATTEMPT}
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=$jobname -N 1 -n 1 --gres=gpu:8 pytest -s -v --color=yes -m "check_norm_isp" ./tests/test_training/test_norm_weight.py
srun -p ${SLURM_PARTITION} --exclusive --kill-on-bad-exit=1 --job-name=\$jobname -N 1 -n 1 --gres=gpu:8 pytest -s -v --color=yes -m "check_norm_isp" ./tests/test_training/test_norm_weight.py
exit_code=$?
sh ./ci_scripts/common/check_slurm_cancled.sh $exit_code $jobname
sh ./ci_scripts/common/check_slurm_cancled.sh \$exit_code \$jobname
EOF

notify_to_feishu:
if: ${{ always() && !cancelled() && contains(needs.*.result, 'failure') && (github.ref_name == 'develop' || github.ref_name == 'main') }}
Expand Down
Loading
Loading