Navigate to your project settings and click the Prebuilds tab to view all prebuilds. All project members can view prebuilds and their logs.Each prebuild shows its status (pending, running, completed, failed, cancelled), environment class, trigger source, and timing information.
Click on a prebuild and select View Logs to see execution details including Dev Container lifecycle command output, build progress, and error messages.Note: Automation task logs in prebuilds are coming soon.When troubleshooting failures, check logs for error messages, verify required secrets are configured, and ensure commands don’t require user interaction
Click the Prebuild button in the top right of your project settings to trigger prebuilds for all selected environment classes.For specific environment classes, use the CLI:
# List prebuildsgitpod prebuild list --project-id <project-id># Get prebuild detailsgitpod prebuild get <prebuild-id># Delete a prebuildgitpod prebuild delete <prebuild-id>
Prebuild fails: Check logs for errors, verify secrets are configured at organization or project level, and ensure commands don’t require user interaction.Environment doesn’t use prebuild: Verify a successful prebuild exists for the environment class and is less than 7 days old.Prebuild stuck: Review logs for hanging commands, check timeout settings, or cancel and retry.