We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f331260 commit 23adb46Copy full SHA for 23adb46
src/ci/run.sh
@@ -113,7 +113,11 @@ export RUST_RELEASE_CHANNEL=$(releaseChannel)
113
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
114
115
if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
116
- RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
+ if [[ "$CI_JOB_NAME" == *ohos* ]]; then
117
+ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-static-stdcpp"
118
+ else
119
+ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
120
+ fi
121
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
122
123
if [ "$DEPLOY_ALT" != "" ] && isLinux; then
0 commit comments