-
Notifications
You must be signed in to change notification settings - Fork 817
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
Update Agones developer guide to point at faster targets #1656
Update Agones developer guide to point at faster targets #1656
Conversation
Running `make build` or `make test` is probably not reasonable for developers to use in a development iteration loop - so pointing new developers instead at `test-go` and `build-images`, which is what is needed most of the time.
Build Succeeded 👏 Build Id: d32bd690-ea5d-462c-8d93-7246c451caed The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also sometimes to safe even more time, if you have the same commit-id then make build-controller-image
would be enough, if change touches only Agones controller itself.
I am using this script:
#!/bin/bash
export REGISTRY="gcr.io/your-image-registry"
#make build-controller-image
make -j4 build-images
make gcloud-auth-docker
make push
#make gcloud-terraform-install
make install
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aLekSer, markmandel The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This sounds like a good extra PR! I tend to do: |
Build Failed 😱 Build Id: ed56ab0b-4c5a-4960-a980-22ae4479fb4b To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Failed 😱 Build Id: 6c296444-42b4-41e1-8da8-7b10b075ce38 To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Succeeded 👏 Build Id: 1e24dd29-5a50-400f-a5bc-4072d340683a The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Running `make build` or `make test` is probably not reasonable for developers to use in a development iteration loop - so pointing new developers instead at `test-go` and `build-images`, which is what is needed most of the time. Co-authored-by: Alexander Apalikov <alexander.apalikov@globant.com>
What type of PR is this?
/kind documentation
What this PR does / Why we need it:
Running
make build
ormake test
is probably not reasonable for developers to use in a development iteration loop - so pointing new developers instead attest-go
andbuild-images
, which is what is needed most of the time.Which issue(s) this PR fixes:
None
Special notes for your reviewer:
None