Skip to content

Commit

Permalink
Build only for iOS and tvOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Sep 25, 2018
1 parent f481149 commit 84d9bc8
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 26 deletions.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ lane :release do |params|
sh "bundle exec pod trunk push DTTableViewManager.podspec --allow-warnings"

puts "Preparing Carthage binary framework."
sh "carthage build --no-skip-current"
sh "carthage build --no-skip-current --platform iOS,tvOS"
sh "carthage archive DTTableViewManager"

puts "Pushing as a GitHub Release."
Expand Down
56 changes: 31 additions & 25 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,57 +8,63 @@ Make sure you have the latest version of the Xcode command line tools installed:
xcode-select --install
```

## Choose your installation method:

<table width="100%" >
<tr>
<th width="33%"><a href="http://brew.sh">Homebrew</a></td>
<th width="33%">Installer Script</td>
<th width="33%">Rubygems</td>
</tr>
<tr>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS or Linux with Ruby 2.0.0 or above</td>
</tr>
<tr>
<td width="33%"><code>brew cask install fastlane</code></td>
<td width="33%"><a href="https://download.fastlane.tools">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
</tr>
</table>
Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew cask install fastlane`

# Available Actions
### test_ios12
```
fastlane test_ios12
```

### test_ios11
```
fastlane test_ios11
```

### test_ios10
### test_tvos12
```
fastlane test_ios10
fastlane test_tvos12
```

### test_tvos11
```
fastlane test_tvos11
```

### test_tvos10
### test_ios_swift3
```
fastlane test_tvos10
fastlane test_ios_swift3
```

### test_ios_swift3
### test_ios_swift4
```
fastlane test_ios_swift3
fastlane test_ios_swift4
```

### test_tvos_swift3
```
fastlane test_tvos_swift3
```

### test_tvos_swift4
```
fastlane test_tvos_swift4
```

### test_xcode9_ios_swift3
```
fastlane test_xcode9_ios_swift3
```

### test_xcode9_ios_swift4
```
fastlane test_xcode9_ios_swift4
```

### pod_lint
```
fastlane pod_lint
Expand Down

0 comments on commit 84d9bc8

Please sign in to comment.