diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index c2223795e..e2c9e40c9 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -115,19 +115,19 @@ jobs: make run-croton-${{ matrix.configuration }} - - name: Compare Restart Output with xrcmp + - name: Compare HYDRO_RST.* Output with xrcmp run: | cd $GITHUB_WORKSPACE/candidate/build/Run for file in output_${{ matrix.configuration }}/HYDRO_RST.*; do\ - echo "FILE = ${file}" \ - echo "DIR CHECK = $GITHUB_WORKSPACE/candidate/build/Run/$file" \ - ls $GITHUB_WORKSPACE/candidate/build/Run/$file \ python ${GITHUB_WORKSPACE}/candidate/tests/utils/xrcmp.py \ --candidate $file \ --reference $GITHUB_WORKSPACE/candidate/build/Run/$file \ --log_file $file_diff.txt \ --n_cores 1; \ done + - name: Compare RESTART.* Output with xrcmp + run: | + cd $GITHUB_WORKSPACE/candidate/build/Run for file in output_${{ matrix.configuration }}/RESTART.*; do\ python ${GITHUB_WORKSPACE}/candidate/tests/utils/xrcmp.py \ --candidate $file \ @@ -135,9 +135,6 @@ jobs: --log_file $file_diff.txt \ --n_cores 1; \ done - # for file in output_${{ matrix.configuration }}/HYDRO_RST.*; do\ - # --log_file $file_diff.txt; \ - # done - name: Compare Output with compare_output run: |