Skip to content

Commit 608eb9e

Browse files
committed
CI: Fix the clazy flakiness
1 parent 39e1087 commit 608eb9e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ci/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ steps:
101101
cp build/${TARGET:-default}/openorienteering-mapper-ci/${{ parameters.outputFilter }} output/
102102
#
103103
if [ ! -f build/default/openorienteering-mapper-ci/Testing/TAG ]; then
104+
set +x # https://github.com/microsoft/azure-pipelines-tasks/issues/10331
104105
echo "##vso[task.setVariable variable=TEST_RESULTS]"
106+
set -x
105107
fi
106108
condition: always()
107109
displayName: 'Process output and test results'

ci/setup-ubuntu.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,9 @@ steps:
4949
chmod +x ${CLAZY_IMAGE}
5050
# Extract the app-image, or paths change on every invocation
5151
./${CLAZY_IMAGE} --appimage-extract
52-
if [ ! -x "${PWD}/squashfs-root/AppRun" ] ; then
53-
chmod +x "${PWD}/squashfs-root/AppRun"
54-
fi
52+
set +x # https://github.com/microsoft/azure-pipelines-tasks/issues/10331
5553
echo "##vso[task.setVariable variable=CXX]${PWD}/squashfs-root/AppRun"
54+
set -x
5655
fi
5756
5857
case "${CXXFLAGS}" in

0 commit comments

Comments
 (0)