File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
tests :
12
- name : Test
12
+ name : Test (SwiftPM)
13
13
uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
14
14
with :
15
15
linux_swift_versions : ' ["nightly-main"]'
18
18
macos_xcode_versions : ' ["16.3"]'
19
19
macos_versions : ' ["sequoia"]'
20
20
21
+ cmake_build :
22
+ name : Build (CMake)
23
+ runs-on : ubuntu-latest
24
+ container : swiftlang/swift:nightly-main-noble
25
+ steps :
26
+ - name : Checkout Sources
27
+ uses : actions/checkout@v1
28
+ - name : Install Dependencies
29
+ shell : bash
30
+ run : apt update && apt install -y cmake ninja-build
31
+ - name : Configure Project
32
+ shell : bash
33
+ run : cmake -G 'Ninja' -B build -S . -DCMAKE_C_COMPILER=clang -DCMAKE_Swift_COMPILER=swiftc -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=YES
34
+ - name : Build Project
35
+ shell : bash
36
+ run : cmake --build build
37
+
21
38
soundness :
22
39
name : Soundness
23
40
uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
Original file line number Diff line number Diff line change 75
75
message (STATUS "_SwiftFoundationICU_SourceDIR not provided, checking out local copy of swift-foundation-icu" )
76
76
FetchContent_Declare (SwiftFoundationICU
77
77
GIT_REPOSITORY https://github.com/apple/swift-foundation-icu.git
78
- GIT_TAG 0.0.9 )
78
+ GIT_TAG main )
79
79
endif ()
80
80
81
81
if (_SwiftCollections_SourceDIR )
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ if(NOT SwiftSyntax_FOUND)
43
43
# If building at desk, check out and link against the SwiftSyntax repo's targets
44
44
FetchContent_Declare (SwiftSyntax
45
45
GIT_REPOSITORY https://github.com/swiftlang/swift-syntax.git
46
- GIT_TAG 600.0.0 )
46
+ GIT_TAG main )
47
47
FetchContent_MakeAvailable (SwiftSyntax )
48
48
else ()
49
49
message (STATUS "SwiftSyntax_DIR provided, using swift-syntax from ${SwiftSyntax_DIR} " )
You can’t perform that action at this time.
0 commit comments