Skip to content

Commit 28b26ff

Browse files
committed
esp/ci: Run LLD tests. Output test logs in lld-tests.log
1 parent 0af6dae commit 28b26ff

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.universal-toolchain-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
artifacts:
5959
paths:
6060
- ${DIST_DIR}/
61+
- ${BUILD_DIR}/lld-tests.log
6162
- ${BUILD_DIR}/tests.log
6263
- ${BUILD_DIR}/build.log
6364
when: always
@@ -94,6 +95,9 @@
9495
touch ${BUILD_PATH}/tests.log;
9596
chmod o+w ${BUILD_PATH}/tests.log;
9697
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';
97101
fi
98102
- export DISTRO_DIR=$PWD/$DIST_DIR
99103
- pushd ${BUILD_PATH}

0 commit comments

Comments
 (0)