https://github.com/tilt-dev/tilt-ci-status
A Tilt extension to periodically log what `tilt ci` is waiting on
https://github.com/tilt-dev/tilt-ci-status
Last synced: 6 days ago
JSON representation
A Tilt extension to periodically log what `tilt ci` is waiting on
- Host: GitHub
- URL: https://github.com/tilt-dev/tilt-ci-status
- Owner: tilt-dev
- Created: 2021-05-11T15:49:01.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-11T15:51:08.000Z (about 5 years ago)
- Last Synced: 2025-02-21T23:18:21.652Z (over 1 year ago)
- Language: Go
- Size: 4.49 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
If Tilt is running as `tilt ci`, periodically logs what ci is waiting on before completing, e.g.:
```
report_tilt_… │ ⌛ tilt ci is waiting on:
report_tilt_… │ doggos:runtime: waiting-for-pod
report_tilt_… │ doggos:update: executing
report_tilt_… │ emoji:runtime: waiting-for-pod
report_tilt_… │ emoji:update: unknown
report_tilt_… │ fe:runtime: waiting-for-pod
report_tilt_… │ fe:update: executing
```
# Usage:
1. Clone the repo to somewhere on your drive.
2. Put this near the top of your Tiltfile to ensure it starts early in your `tilt ci` run.
```
load('path/to/tilt-ci-status/Tiltfile', 'report_tilt_ci_status')
report_tilt_ci_status()
```