File tree 3 files changed +17
-2
lines changed
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,15 @@ matrix:
14
14
language : objective-c
15
15
env : JOB=Xcode8
16
16
- script :
17
+ - swift --version
17
18
- swift build
18
19
- SWIFTPM_TEST_Commandant=YES swift test
19
20
os : osx
20
21
osx_image : xcode8.3
21
22
language : objective-c
22
23
env : JOB=SPM
23
24
- script :
25
+ - swift --version
24
26
- swift build
25
27
- SWIFTPM_TEST_Commandant=YES swift test
26
28
env : JOB=Linux
@@ -29,6 +31,18 @@ matrix:
29
31
language : generic
30
32
install :
31
33
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
34
+ - script :
35
+ - swift --version
36
+ - swift build
37
+ - SWIFTPM_TEST_Commandant=YES swift test
38
+ env :
39
+ - JOB=Linux
40
+ - SWIFT_VERSION=4.0-DEVELOPMENT-SNAPSHOT-2017-06-11-a
41
+ sudo : required
42
+ dist : trusty
43
+ language : generic
44
+ install :
45
+ - eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
32
46
33
47
notifications :
34
48
email : false
Original file line number Diff line number Diff line change @@ -18,5 +18,6 @@ let package = Package(
18
18
]
19
19
}
20
20
return deps
21
- } ( )
21
+ } ( ) ,
22
+ swiftLanguageVersions: [ 3 , 4 ]
22
23
)
Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ struct NoOptionsCommand: CommandProtocol {
33
33
var function : String { return " function " }
34
34
35
35
func run( _ options: NoOptions < CommandantError < ( ) > > ) -> Result < ( ) , CommandantError < ( ) > > {
36
- return . success( )
36
+ return . success( ( ) )
37
37
}
38
38
}
You can’t perform that action at this time.
0 commit comments