Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit d034945

Browse files
committed
Fix problem with moving logs.
1 parent df524c4 commit d034945

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/crypto3-testing-linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ jobs:
197197
cd ${{ steps.strings.outputs.docker-workspace-path }}/build/$dir
198198
targets_str=$(find . -type f -executable -printf '%P|' | sed 's/|$//')
199199
ctest -v -j ${{ steps.strings.outputs.proc-number }} -R "(${targets_str})" || true
200+
mkdir -p $custom_tests_dir/$dir
200201
mv ./junit_results/* $custom_tests_dir/$dir
201202
done
202203

.github/workflows/crypto3-testing-mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ jobs:
162162
# -perm +0111 checks for execute permission, we also need to remove the ./ in the start of executable names.
163163
targets_str=$(find . -type f -perm +0111 | awk '{$1=$1};1' | sed '/^$/d' | tr '\n' ' ' | sed 's/\.\///' | sed 's/ $//')
164164
ctest -v -j ${{ steps.strings.outputs.proc-number }} -R "(${targets_str})" || true
165+
mkdir -p $custom_tests_dir/$dir
165166
mv ./junit_results/* $custom_tests_dir/$dir
166167
done
167168

0 commit comments

Comments
 (0)