We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29bb995 commit c0e2a83Copy full SHA for c0e2a83
1 file changed
.travis.yml
@@ -3,8 +3,17 @@ matrix:
3
- language: objective-c
4
osx_image: xcode9.2
5
before_deploy:
6
+ - brew update
7
+ - brew install sourcekitten
8
+ # `brew outdated` is necessary to prevent build error when there is no updates for Carthage.
9
+ - brew outdated carthage || brew upgrade carthage
10
+ # Update jazzy.
11
+ - gem update
12
+ - gem cleanup
13
+ # Generate documentation.
14
- sourcekitten doc --spm-module BitByteData > docs.json
15
- jazzy
16
+ # Build Carthage package.
17
- swift package generate-xcodeproj
18
- carthage build --no-skip-current
19
- carthage archive BitByteData
0 commit comments