We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f9df6 commit 2378612Copy full SHA for 2378612
.universal-toolchain-release.yml
@@ -65,6 +65,14 @@
65
expire_in: 1 day
66
variables:
67
BUILD_TOOLCHAIN_CMD_EXTRA_ARGS: ""
68
+ after_script:
69
+ # help to identify that build failed due to OOM
70
+ - >
71
+ if [ $CI_JOB_STATUS == 'failed' ]; then
72
+ [ ! -f "${BUILD_DIR}/build.log" ] || grep -i "internal compiler error\|Killed" ${BUILD_DIR}/build.log || true
73
+ [ ! -f "${BUILD_DIR}/tests.log" ] || grep -i "internal compiler error\|Killed" ${BUILD_DIR}/tests.log || true
74
+ [ ! -f "${BUILD_DIR}/lld-tests.log" ] || grep -i "internal compiler error\|Killed" ${BUILD_DIR}/lld-tests.log || true
75
+ fi
76
script:
77
- *get_release_name
78
- mkdir ${DOWNLOADS_DIR}
0 commit comments