https://github.com/cats-oss/xcbt
⌛️xcbt shows Xcode build time of a specified project.
https://github.com/cats-oss/xcbt
cli swift xcode
Last synced: 7 months ago
JSON representation
⌛️xcbt shows Xcode build time of a specified project.
- Host: GitHub
- URL: https://github.com/cats-oss/xcbt
- Owner: cats-oss
- License: mit
- Created: 2018-10-03T02:09:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-03T02:11:12.000Z (over 7 years ago)
- Last Synced: 2025-05-03T15:37:56.322Z (11 months ago)
- Topics: cli, swift, xcode
- Language: Swift
- Homepage:
- Size: 6.84 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xcbt
Show Xcode build time of a specified project.
## Installation
Clone this repository and run `install.sh`
```
$ git clone https://github.com/cats-oss/xcbt.git
$ cd xcbt
$ ./install.sh
```
## Usage
#### 1. Show build time of specified App
```
$ xcbt cujira
Scheme: cujira-Package
- Build start : 2018-10-02 12:52:04 +0000
- Build end : 2018-10-02 12:52:13 +0000
- Build time : 9.6459s
```
#### 2. Show all build time of specified App
```
$ xcbt cujira --all
Scheme: cujira-Package
- Build start : 2018-10-03 02:01:17 +0000
- Build end : 2018-10-03 02:01:19 +0000
- Build time : 1.9725s
Scheme: cujira-Package
- Clean start : 2018-10-03 02:01:06 +0000
- Clean end : 2018-10-03 02:01:06 +0000
- Clean time : 0.4085s
Scheme: cujira-Package
- Build start : 2018-10-02 12:52:04 +0000
- Build end : 2018-10-02 12:52:13 +0000
- Build time : 9.6459s
```
#### 3. Show build time of specified path
```
$ xcbt --path "~/Library/Developer/Xcode/DerivedData/cujira-gmnfnyurvxsymsaolrsdojmyukyk"
Scheme: cujira-Package
- Build start : 2018-10-02 12:52:04 +0000
- Build end : 2018-10-02 12:52:13 +0000
- Build time : 9.6459s
```
#### 4. Show build time of last built
```
$ xcbt --last
Scheme: cujira-Package
- Build start : 2018-10-02 12:52:04 +0000
- Build end : 2018-10-02 12:52:13 +0000
- Build time : 9.6459s
```
## Development
- Xcode 9.4.1
- Swift 4.1
## License
xcbt is available under the MIT license. See the [LICENSE file](./LICENSE) for more info.