Skip to content

Commit e4887c7

Browse files
authored
Disable the new stdlib build (#78878)
Somehow the new build system is affecting the old build system in such a way that it's not producing the Swift Concurrency runtime for smoke testing, resulting in test failures due to the missing library. ``` /Users/ec2-user/jenkins/workspace/swift-PR-macos-smoke-test/branch-main/build/buildbot_incremental/llvm-macosx-x86_64/bin/llvm-nm: error: /Users/ec2-user/jenkins/workspace/swift-PR-macos-smoke-test/branch-main/build/buildbot_incremental/swift-macosx-x86_64/lib/swift/macosx/x86_64/libswift_Concurrency.dylib: No such file or directory ``` This isn't even a directory that is affected by the new build, but disabling to try to bring things back up.
1 parent 33eab01 commit e4887c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/build-presets.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,8 @@ skip-test-sourcekit-lsp
669669
skip-test-swiftpm
670670
skip-test-llbuild
671671

672-
swift-cmake-options=-DSWIFT_ENABLE_NEW_RUNTIME_BUILD=YES
672+
# TODO: Look into why this causes the new test suite to fail to find the concurrency modules
673+
# swift-cmake-options=-DSWIFT_ENABLE_NEW_RUNTIME_BUILD=YES
673674

674675
[preset: buildbot_incremental,tools=RA,stdlib=RD,smoketest=macosx,flto]
675676
mixin-preset=buildbot_incremental,tools=RA,stdlib=RD,smoketest=macosx

0 commit comments

Comments
 (0)