Skip to content

Commit

Permalink
modify to shorten test list and debug more quickly
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Nov 20, 2024
1 parent a8dff4d commit 940d2f1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ jobs:
cd cime/scripts
module load cmake
qcmd -q main -v PROJECT=P93300606 -A P93300606 -l walltime=02:00:00 -- ./create_test --xml-machine derecho\
--xml-category github --no-run --compiler ${{ inputs.compiler }} --test-id ${GITHUB_RUN_ID}${{ inputs.compiler }}
--xml-category github2 --no-run --compiler ${{ inputs.compiler }} --test-id ${GITHUB_RUN_ID}${{ inputs.compiler }}
- name: check status
run: |
cd $SCRATCH
./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml --fails-only | grep FAIL | grep -v FAILURE
if [ $? == 0 ]; then
return -1
retval=$?
if [ $retval -eq 0 ]; then
echo "Error"
fi
return 0
exit 0
6 changes: 3 additions & 3 deletions .github/workflows/derecho.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
module list
./bin/git-fleximod update
reusable:
build:
strategy:
matrix:
compiler: [intel, intel-oneapi, nvhpc, gnu ]
uses: ./.github/workflows/reusable.yaml
compiler: [gnu ]
uses: ./.github/workflows/build.yaml
with:
compiler: ${{ matrix.compiler }}
2 changes: 1 addition & 1 deletion cime_config/testlist_allactive.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<machines>
<machine name="derecho" compiler="intel" category="aux_cime_baselines"/>
<machine name="derecho" compiler="gnu" category="prealpha"/>
<machine name="derecho" compiler="intel" category="github"/>
<machine name="derecho" compiler="intel" category="github2"/>
</machines>
<options>
<option name="wallclock"> 00:30:00 </option>
Expand Down

0 comments on commit 940d2f1

Please sign in to comment.