-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prebuild only run when first time of project add into self-host Gitpod #10024
Comments
@newbe36524, is there a .gitpod.yml in the default branch? Prebuilds are started on push events only if there are tasks in a .gitpod.yml file on the branch of the commit pushed. You can run If there is/was none, we definitely need to improve the messaging to make it clear why a prebuild is running initially. |
Will assume that this is a duplicate of https://github.com/gitpod-io/website/issues/2125 unless @newbe36524 confirms that there is an |
@AlexTugarev @jldec image: dfx_rust:bullseye-dfx-0.9.3-gitpod-5
ports:
- port: 8000
visibility: public
onOpen: ignore
tasks:
- name: dfx dev
init: |
. ~/fix_gitpod_path.sh
cd src
./start.sh
./sh_setup_dev.sh
./sh_reinstall.sh
dfx stop
command: |
. ~/fix_gitpod_path.sh
pip3 install pipenv && \
pip3 install pre-commit && \
pre-commit install
cd src
./start.sh
./sh_setup_dev.sh
vscode:
extensions:
- matklad.rust-analyzer
- GitHub.copilot
- panicbit.cargo
- bungcip.better-toml
- usernamehw.errorlens
- ms-azuretools.vscode-docker
jetbrains:
pycharm:
plugins:
- org.rust.lang
- ru.adelf.idea.dotenv
- com.chrisrm.idea.MaterialThemeUI
- com.mallowigi But it never run again but the first time of project added to self-host gitpod |
👀 Thanks for sharing @newbe36524! |
@lucasvaltl Sure, this is my host ******* |
So it turns out that we have deployed a fix a week ago in this PR, but self-hosted needs to update to the current main. @lucasvaltl Would you mind validating this by updating your installation to our main? 🙏🏽 |
I'll close it anyway as we are confident that this will be fixed once self-hosted is updated 💪🏼 |
Bug description
I deploy a self-host Gitpod in Azure as https://github.com/gitpod-io/gitpod-microsoft-aks-guide says.
Everything works but some problem of prebuilds raised.
Prebuilds of DEFAULT branch only run at the first time when a new repo added as a project in gitpod. After that, when I make some changes on the DEFAULT branch, it doesn't trigger prebuild. it's always in the READY state. But the actual content is old.
I'm curious if I'm overlooking some configuration or if this is a bug.
Steps to reproduce
Workspace affected
No response
Expected behavior
Example repository
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: