-
Notifications
You must be signed in to change notification settings - Fork 825
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
e2e tests for arm64 simple game server #2604
Conversation
Build Succeeded 👏 Build Id: 12e81555-afa6-45fe-b943-de5fb2a6067b 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:
|
Build Failed 😱 Build Id: ea409843-c641-4ba9-b420-8b478ee2fc8c To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Succeeded 👏 Build Id: 2b192cff-39b8-43c0-a770-55b4e71ed209 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:
|
examples/simple-game-server/Makefile
Outdated
@@ -41,6 +43,10 @@ server_tag_linux_amd64 = $(server_tag)-linux_amd64 | |||
else | |||
server_tag_linux_amd64 = $(server_tag) | |||
endif | |||
ifeq ($(WITH_ARM64), 1) |
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.
I think the above lines should be changed in the same way you changed the tag generation for the controller/allocator/ping images so that we always push a multi-arch manifest (even if both WITH_WINDOWS
and WITH_ARM
are false). Right now if WITH_WINDOWS
is false then server_tag_linux_amd64 = $(server_tag)
which I don't think will work if WITH_ARM
is set to true at the same time.
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.
done
Build Failed 😱 Build Id: fef3321e-3511-4f10-a410-1c2bf291199a To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Failed 😱 Build Id: 994004c2-722d-4aee-b4ed-49b27c81aa9e To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Failed 😱 Build Id: 1b1f074f-9334-4f52-99f9-485051c44638 To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Succeeded 👏 Build Id: 1fdc05cc-2e2f-4924-b70c-3b80cc0ee9d0 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:
|
examples/simple-game-server/Makefile
Outdated
push: push-image | ||
build: build-linux-image-amd64 | ||
|
||
ifeq ($(WITH_WINDOWS), 1) | ||
build: build-linux-image $(foreach winver, $(WINDOWS_VERSIONS), build-windows-image-$(winver)) |
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.
build-linux-image
no longer exists.
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.
Delete this step
examples/simple-game-server/Makefile
Outdated
push_server_manifest += $(server_tag_linux_arm64) | ||
endif | ||
|
||
push: push-image |
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.
Is there a reason to have both push
and push-image
targets? Can we remove this and rename the push-image
ones below to push
?
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.
I delete redondant target
Build Succeeded 👏 Build Id: 7d427164-cdd9-4d08-ab12-f493ec76e41a 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:
|
Build Failed 😱 Build Id: 4aba1151-fed8-4d6a-ac89-1a30770cbd8b To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Failed 😱 Build Id: 52ee71e9-bb53-4304-a835-0bfd7fddceae To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Trying to grab relevant errors I found:
and
|
Build Failed 😱 Build Id: 45f32dbd-6a82-4e14-934e-118763eac0b3 To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Different flake:
|
Build Failed 😱 Build Id: 7a977a96-f7c6-4d55-8b1d-eecbdcfee1de To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Succeeded 👏 Build Id: 8cd12307-c36a-4de9-ac96-06494caeb1f7 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:
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Ludea, roberthbailey 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 |
What type of PR is this?
/kind feature
What this PR does / Why we need it:
e2e tests for simple game server on arm64 hosts
Which issue(s) this PR fixes:
Works on #2216
Special notes for your reviewer: