From a94393a1b9c16564ce8c7fc2ac4daecea1aa9a79 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Wed, 20 Nov 2024 07:39:19 -0700 Subject: [PATCH] remove illegal char --- .github/workflows/reusable.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable.yaml b/.github/workflows/reusable.yaml index e4279c850..f13f7c6b7 100644 --- a/.github/workflows/reusable.yaml +++ b/.github/workflows/reusable.yaml @@ -24,11 +24,11 @@ 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 github --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 + ./cs.status.${GITHUB_RUN_ID}${{ inputs.compiler }} --expected-fails-file $GITHUB_WORKSPACE/cime_config/testfiles/ExpectedTestFails.xml --fails-only | grep FAIL if [ $? == 0 ]; then return -1 fi \ No newline at end of file