From 0fb0942578177bee155f245b8a79c61e8430394a Mon Sep 17 00:00:00 2001 From: lenka Date: Thu, 28 Mar 2024 17:06:23 -0700 Subject: [PATCH] no bl ln --- .buildkite/pipeline.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 596270aeb..be727a89a 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -436,17 +436,14 @@ steps: command: - | # Submit the sbatch script and capture its job ID - # JOB_ID=$(sbatch test/mpi_tests/local_checks.sh | awk '{print $4}') # echo "Submitted job with ID: $JOB_ID, output log: slurm-$JOB_ID.out" # START_TIME=$(date +%s) - # # Loop until the job finishes # while true; do # # Check the status of the job # STATUS=$(squeue -j $JOB_ID | grep $JOB_ID | awk '{print $5}') # ELAPSED_TIME=$(( $(date +%s) - $START_TIME )) - # # If the job status is 'PD' (pending) or 'R' (running), wait and continue checking # if [ "$STATUS" == "PD" ] || [ "$STATUS" == "R" ]; then # sleep 60