@@ -23,10 +23,15 @@ jobs:
23
23
run : |
24
24
cd Examples/CloudFunctions
25
25
swift build
26
+ - name : Test static linking
27
+ run : |
28
+ cd Examples/CloudFunctions
29
+ swift build -c release -Xswiftc -static-executable
26
30
- name : Test LocalDebugging example
27
31
run : |
28
32
cd Examples/LocalDebugging/MyCloudFunction
29
33
swift build
34
+ swift build -c release -Xswiftc -static-executable
30
35
31
36
test-linux-release :
32
37
name : Test on Linux
@@ -52,10 +57,15 @@ jobs:
52
57
run : |
53
58
cd Examples/CloudFunctions
54
59
swift build
60
+ - name : Test static linking
61
+ run : |
62
+ cd Examples/CloudFunctions
63
+ swift build -c release -Xswiftc -static-executable
55
64
- name : Test LocalDebugging example
56
65
run : |
57
66
cd Examples/LocalDebugging/MyCloudFunction
58
67
swift build
68
+ swift build -c release -Xswiftc -static-executable
59
69
60
70
test-linux-nightly :
61
71
name : Test on Linux
@@ -80,10 +90,15 @@ jobs:
80
90
run : |
81
91
cd Examples/CloudFunctions
82
92
swift build
93
+ - name : Test static linking
94
+ run : |
95
+ cd Examples/CloudFunctions
96
+ swift build -c release -Xswiftc -static-executable
83
97
- name : Test LocalDebugging example
84
98
run : |
85
99
cd Examples/LocalDebugging/MyCloudFunction
86
100
swift build
101
+ swift build -c release -Xswiftc -static-executable
87
102
88
103
test-macos :
89
104
name : Test on macOS
0 commit comments