We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af6dae commit 28b26ffCopy full SHA for 28b26ff
.universal-toolchain-release.yml
@@ -58,6 +58,7 @@
58
artifacts:
59
paths:
60
- ${DIST_DIR}/
61
+ - ${BUILD_DIR}/lld-tests.log
62
- ${BUILD_DIR}/tests.log
63
- ${BUILD_DIR}/build.log
64
when: always
@@ -94,6 +95,9 @@
94
95
touch ${BUILD_PATH}/tests.log;
96
chmod o+w ${BUILD_PATH}/tests.log;
97
runuser -l test_runner -c 'cmake --build '${LLVM_BUILD_PATH}' --target check-all 2>&1 > '${BUILD_PATH}'/tests.log';
98
+ touch ${BUILD_PATH}/lld-tests.log;
99
+ chmod o+w ${BUILD_PATH}/lld-tests.log;
100
+ runuser -l test_runner -c 'cmake --build '${LLVM_BUILD_PATH}' --target lld-test 2>&1 > '${BUILD_PATH}'/lld-tests.log';
101
fi
102
- export DISTRO_DIR=$PWD/$DIST_DIR
103
- pushd ${BUILD_PATH}
0 commit comments