Skip to content

Commit 2e06cfd

Browse files
committed
Update to Swift 3.1
1 parent 267bd78 commit 2e06cfd

File tree

4 files changed

+4
-22
lines changed

4 files changed

+4
-22
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ matrix:
55
include:
66
- os: osx
77
language: objective-c
8-
osx_image: xcode8.2
8+
osx_image: xcode8.3
99
script:
1010
- swift test
1111
- os: linux
@@ -15,9 +15,9 @@ matrix:
1515
env:
1616
before_install:
1717
- wget -q -O - https://swift.org/keys/all-keys.asc | gpg --import -
18-
- wget https://swift.org/builds/swift-3.0.2-release/ubuntu1404/swift-3.0.2-RELEASE/swift-3.0.2-RELEASE-ubuntu14.04.tar.gz
19-
- tar xzf swift-3.0.2-RELEASE-ubuntu14.04.tar.gz
20-
- export PATH=${PWD}/swift-3.0.2-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
18+
- wget https://swift.org/builds/swift-3.1-release/ubuntu1404/swift-3.1-RELEASE/swift-3.1-RELEASE-ubuntu14.04.tar.gz
19+
- tar xzf swift-3.1-RELEASE-ubuntu14.04.tar.gz
20+
- export PATH=${PWD}/swift-3.1-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
2121
script:
2222
- swift test
2323
notifications:

Sources/FileCheck/CheckString.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
//
2-
// CheckString.swift
3-
// FileCheck
4-
//
5-
// Created by Robert Widmann on 3/9/17.
6-
//
7-
//
8-
91
import Foundation
102

113
enum CheckType {

Sources/FileCheck/Diagnostics.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
//
2-
// Diagnostics.swift
3-
// FileCheck
4-
//
5-
// Created by Robert Widmann on 3/9/17.
6-
//
7-
//
8-
91
import Foundation
102

113
func diagnose(_ kind : DiagnosticKind, at loc : CheckLoc, with message : String, options: FileCheckOptions) {

Sources/FileCheck/FileCheck.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import Foundation
22

33
#if os(Linux)
44
import Glibc
5-
6-
typealias NSRegularExpression = RegularExpression
75
#else
86
import Darwin
97
#endif

0 commit comments

Comments
 (0)