From c0d9bf2910c1cd3baa554a228ff3e1590864e68a Mon Sep 17 00:00:00 2001 From: Soren Rasmussen Date: Fri, 26 Apr 2024 10:48:24 -0600 Subject: [PATCH] debugging github actions --- .github/workflows/test-pr.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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: |