Skip to content
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

hack/update-deps.sh not updating eventing submodule correctly in CI #178

Closed
creydr opened this issue Dec 6, 2023 · 9 comments · Fixed by #203 or #309
Closed

hack/update-deps.sh not updating eventing submodule correctly in CI #178

creydr opened this issue Dec 6, 2023 · 9 comments · Fixed by #203 or #309
Assignees
Labels
priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release.

Comments

@creydr
Copy link
Contributor

creydr commented Dec 6, 2023

The update-dependencies job does not update the eventing-core submodule correctly while the eventing-kafka-broker submodule is updated correctly.

Pulling branch main for submodule /github/workspace/main/third_party/eventing
Already up to date.

e.g. in https://github.com/knative-extensions/knobots/actions/runs/7114892104/job/19369892442

This needs to be fixed, so that the dependencies get updated correctly again

Resources:

@creydr creydr added the priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. label Dec 6, 2023
@pierDipi
Copy link
Member

We could try to add more logs as it's currently not clear what is wrong

  • log the submodule remote branch in update_submodule
  • log current commit sha
  • etc

@creydr
Copy link
Contributor Author

creydr commented Dec 21, 2023

Current log:
The submodules are recognized now correctly after #203.
Anyhow, after hack/update-codegen.sh is run in https://github.com/knative-extensions/knobots/blob/399612e0a785826d9ae4df58edc8e854154a9a8e/actions/update-deps/entrypoint.sh#L65, the changes are not recognized anymore. See https://github.com/knative-extensions/knobots/actions/runs/7256079820/job/19767808948:

On branch main
Your branch is up to date with 'origin/main'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
	modified:   go.mod
	modified:   go.sum
	modified:   vendor/modules.txt

@creydr creydr removed their assignment Jan 17, 2024
@creydr
Copy link
Contributor Author

creydr commented Jan 17, 2024

unassigned myself if anybody else want to give it a try

@octonawish-akcodes
Copy link

Can I try?

@creydr
Copy link
Contributor Author

creydr commented Jan 17, 2024

sure

@octonawish-akcodes
Copy link

/assign

@creydr
Copy link
Contributor Author

creydr commented Jan 19, 2024

@creydr
Copy link
Contributor Author

creydr commented Jan 29, 2024

I think I found the problem:
In the update-deps job, we call ./hack/update-codegen.sh too (without parameters!):

https://github.com/knative-extensions/knobots/blob/7927c25f2ad10870e2452ce75b312462b66199ab/actions/update-deps/entrypoint.sh#L65

In eventing-istios ./hack/update-codegen.sh, we call ./hack/update-deps.sh (without parameters):

"${REPO_ROOT_DIR}"/hack/update-deps.sh

But as we don't pass the parameters (e.g. --upgrade or some --release info) in the update-deps job and don't pass this in eventing-istios ./hack/update-codegen.sh to ./hack/update-deps.sh, we don't update the submodules:

function update_submodule() {
if [ "${upgrade}" = "" ]; then
return
fi

Anyhow not really sure yet, how to solve this, besides updating the update-deps job (entrypoint.sh) with passing the same arguments to update-codegen.sh and then pass them through update-deps.sh

@pierDipi: FYI ^

@pierDipi
Copy link
Member

Isn't that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
Projects
None yet
3 participants