Closed cfergeau closed 6 months ago
[APPROVALNOTIFIER] This PR is NOT APPROVED
This pull-request has been approved by: Once this PR has been reviewed and has the lgtm label, please ask for approval from cfergeau. For more information see the Kubernetes Code Review Process.
The full list of commands accepted by this bot can be found here.
The "Build RPM" failure means this change is working as expected. However, I realize now that it would be good if make spec
failed when gomod2rpmdeps
fails.
About https://github.com/crc-org/crc/pull/4132/commits/07add4ff6a24d2fd918251c1014268a24ded50e2 I was thinking instead to use go-1.21 tool chain can we revert ec6cbfb3d35f433a6285bda4b12badb45e97f915 one and use go mod tidy -go 1.20
as part of make vendor
?
/hold
@cfergeau: The following tests failed, say /retest
to rerun all failed tests or /retest-required
to rerun all mandatory failed tests:
Test name | Commit | Details | Required | Rerun command |
---|---|---|---|---|
ci/prow/e2e-microshift-crc | b525b854f193e2c20bc25d73350a0ac1a2c20ea2 | link | true | /test e2e-microshift-crc |
ci/prow/integration-crc | b525b854f193e2c20bc25d73350a0ac1a2c20ea2 | link | true | /test integration-crc |
ci/prow/security | b525b854f193e2c20bc25d73350a0ac1a2c20ea2 | link | false | /test security |
ci/prow/e2e-crc | b525b854f193e2c20bc25d73350a0ac1a2c20ea2 | link | true | /test e2e-crc |
ci/prow/images | b525b854f193e2c20bc25d73350a0ac1a2c20ea2 | link | true | /test images |
Full PR test history. Your PR dashboard.
should we close it because #4139 have all those commits also?
Since this PR won't work without updating to 1.21, sure.
verify-vendor.sh
compares the content of thevendor
directory after runningmake vendor
with a copy which was made before runningmake vendor
. This does not catch changes to go.mod/go.sum made bygo mod tidy
which we forgot to commit.This commit uses
git diff --exit-code
instead of runningdiff
against the vendor directory.This will catch all uncommitted changes, which should be fine when
make vendorcheck
is run.Using
git diff
instead ofdiff
allows to remove quite some code fromverify-vendor.sh