-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat: add support for darwin/arm64 arch #59
Conversation
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
The noctx linter checks for http requests that don't pass in `context.Context`. This project does not have any requests that are in any exported packages so we don't need it. Signed-off-by: Rich Lander <lander2k2@protonmail.com>
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
@@ -78,19 +80,19 @@ jobs: | |||
- name: Standalone Operator | |||
artifact: standalone-codebase | |||
test-workload-path: test/cases/standalone | |||
go-version: 1.17 | |||
go-version: 1.19 |
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.
@lander2k2 we should not change all of the go-version
lines to 1.19. This would effectively test all cases (standalone, collection, edge-standalone, edge-collection) twice with the same version of go. The purpose of having 2 different tests for different versions is that we should be supporting 2 versions of go (current, and 1 prior release) because not everyone will upgrade to the latest version right away.
Suggestion is that the edge cases should be tested with the previous version (1.18). This would mean that lines 87, 95, 155, and 165 should read go-version: 1.18
. This would allow us coverage for testing both functional and e2e tests would be supported for both versions of go.
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
eb23d82
to
66369fe
Compare
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
Signed-off-by: Rich Lander <lander2k2@protonmail.com>
Signed-off-by: Rich Lander lander2k2@protonmail.com