Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Jenkins-nightly-test failure #174

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cicd/scripts/land_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ status=${PIPESTATUS[0]}
cat sorc/build/log.ecbuild sorc/build/log.make >> ${workspace}/${UFS_PLATFORM}-${UFS_COMPILER}-build-log.txt
echo "Pipeline Completed Land-DA build on ${UFS_PLATFORM} ${UFS_COMPILER}. status=$status"

ls -l sorc/build/bin/*.exe sorc/build/lib/*.so
ls -l sorc/build/bin/*.exe sorc/build/lib64/*.so
status=$?

git status -u
Expand Down
4 changes: 2 additions & 2 deletions .cicd/scripts/land_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ status=0

if [[ true = ${LAND_DA_RUN_TESTS:=false} ]] ; then

ls -l sorc/build/bin/*.exe sorc/build/lib/*.so
ls -l sorc/build/bin/*.exe sorc/build/lib64/*.so
status=$?
if [[ ${status} = 0 ]] ; then

Expand All @@ -100,7 +100,7 @@ if [[ true = ${LAND_DA_RUN_TESTS:=false} ]] ; then
set -x
cd -
else
echo "Error: bin/* or lib/* not available."
echo "Error: bin/* or lib64/* not available."
fi
else
echo "Pipeline skipping Tests on ${UFS_PLATFORM} (${machine})"
Expand Down
Loading