Skip to content

Commit

Permalink
fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Nov 15, 2024
1 parent 6708013 commit d416251
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/derecho.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
CIME_DRIVER: nuopc
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

uses ESCOMP/CESM/.github/workflows/reusable.yaml@mail
uses: ESCOMP/CESM/.github/workflows/reusable.yaml@mail
with:
stage: ${{ matrix.compiler }}

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
steps:
- name: Run ${{ inputs.compiler }} tests
continue-on-error: true
run: |
run: |
pwd
cd cime/scripts
module load cmake
qcmd -v PROJECT=P93300606 -A P93300606 -l walltime=02:00:00 -- ./create_test --xml-machine derecho --xml-category github --no-run --compiler ${{ matrix.compiler }} --test-id ghtest.${{ inputs.compiler }}
qcmd -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 ghtest.${{ inputs.compiler }}
- name: check status
run: |
cd $SCRATCH
./cs.status.ghtest.${{ inputs.compiler }} --expected-fails-file ghtest.expected_fails.${{ inputs.compiler }}
./cs.status.ghtest.${{ inputs.compiler }} --expected-fails-file $HOME/ghtest.expected_fails.${{ inputs.compiler }}

0 comments on commit d416251

Please sign in to comment.