Skip to content

Update build.yml #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
tag: 5.6.1-RELEASE

- branch: development
tag: DEVELOPMENT-SNAPSHOT-2022-09-24-a
tag: DEVELOPMENT-SNAPSHOT-2024-07-02-a

steps:
- name: Install Swift ${{ matrix.tag }}
Expand Down
5 changes: 4 additions & 1 deletion Sources/Core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ set_target_properties(swiftCore PROPERTIES
Swift_MODULE_NAME Swift)
target_compile_options(swiftCore PRIVATE
-parse-stdlib
-disallow-use-new-driver
"SHELL:-Xfrontend -enable-resilience")
if(CMAKE_Swift_COMPILER_VERSION VERSION_LESS 5.10)
target_compile_options(swiftCore PRIVATE
-disallow-use-new-driver)
endif()
target_link_libraries(swiftCore PRIVATE
swiftRuntime)
target_link_options(swiftCore PRIVATE
Expand Down
Loading