Skip to content

Commit

Permalink
fix: add faq for build failed to start error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jithin Emmanuel committed Mar 1, 2018
1 parent 52097a4 commit 2340e44
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/user-guide/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,10 @@ If your pipeline looks out of sync after changes were made to it, to make sure i
Individual pipelines may be removed by clicking the Delete icon on the Options tab in your pipeline page. This action is not undoable.

![Delete a pipeline](./assets/delete-pipeline.png)

## How do I fix "Build failed to start" error message?

This is caused by a variety of reasons including cluster setup issue like hyperd down (if using executor vm) or a problem with your build image etc. Fixing this issue
requires different approaches based on what layer it's failing.

1.`/opt/sd/launch: not found` This issue affects Alpine based images because it uses musl instead of glibc. Workaround is to create the following symlink `mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2` when creating your Docker image.

0 comments on commit 2340e44

Please sign in to comment.