File tree 4 files changed +52
-6
lines changed 4 files changed +52
-6
lines changed Original file line number Diff line number Diff line change 1
- 4.2.3
1
+ 5.0
Original file line number Diff line number Diff line change @@ -25,17 +25,17 @@ matrix:
25
25
dist : xenial
26
26
sudo : required
27
27
services : docker
28
- env : DOCKER_IMAGE=swift:4.2.3
28
+ env : DOCKER_IMAGE=swift:4.2.4 SWIFT_SNAPSHOT=4.2.4
29
29
- os : linux
30
30
dist : xenial
31
31
sudo : required
32
32
services : docker
33
- env : DOCKER_IMAGE=swift:4.2.3 SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
33
+ env : DOCKER_IMAGE=swift:5.0-xenial
34
34
- os : linux
35
35
dist : xenial
36
36
sudo : required
37
37
services : docker
38
- env : DOCKER_IMAGE=ubuntu:18.04
38
+ env : DOCKER_IMAGE=swift:5.0 SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
39
39
- os : osx
40
40
osx_image : xcode9.2
41
41
sudo : required
@@ -47,8 +47,12 @@ matrix:
47
47
- os : osx
48
48
osx_image : xcode10.1
49
49
sudo : required
50
+ env : SWIFT_SNAPSHOT=4.2.1
50
51
- os : osx
51
- osx_image : xcode10.1
52
+ osx_image : xcode10.2
53
+ sudo : required
54
+ - os : osx
55
+ osx_image : xcode10.2
52
56
sudo : required
53
57
env : SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
54
58
Original file line number Diff line number Diff line change 1
- // swift-tools-version:4 .0
1
+ // swift-tools-version:5 .0
2
2
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
3
4
4
/**
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:4.0
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+ /**
5
+ * Copyright IBM Corporation 2016, 2017
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ **/
19
+
20
+ import PackageDescription
21
+
22
+ let package = Package (
23
+ name: " HTMLEntities " ,
24
+ products: [
25
+ // Products define the executables and libraries produced by a package, and make them visible to other packages.
26
+ . library(
27
+ name: " HTMLEntities " ,
28
+ targets: [ " HTMLEntities " ]
29
+ )
30
+ ] ,
31
+ targets: [
32
+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
33
+ // Targets can depend on other targets in this package, and on products in packages which this package depends on.
34
+ . target(
35
+ name: " HTMLEntities "
36
+ ) ,
37
+ . testTarget(
38
+ name: " HTMLEntitiesTests " ,
39
+ dependencies: [ " HTMLEntities " ]
40
+ )
41
+ ]
42
+ )
You can’t perform that action at this time.
0 commit comments