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

Create GH release with buildenvs #158

Open
wants to merge 2 commits into
base: 2.6
Choose a base branch
from

Conversation

acolombier
Copy link
Member

This is the first part of the proposal to also use GH release to reduce data round-trips on our runner and improve speed. The current test seems to yield about a ~5x improvement on CI and about the same performance locally, tho slightly slower as the speed tends to fluctuate more.

Note: it also restrains the push and pull_requests CI trigger to prevent double builds

@acolombier acolombier requested review from daschuer March 23, 2025 18:56
Comment on lines +201 to +204
gh release create --repo "${{ github.repository }}" "${RELEASE_NAME}" \
--generate-notes \
--latest \
--target "${{ github.push.after }}" ${{ !endsWith( github.event.ref, '-rel' ) && '--prerelease' || '' }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will create a tag like "2.6-557befb" for every single commit. An set it to latest. We have always some issues with every new build. So I am not sure if this is a good idea.

How does the '-rel' thing work?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have here a branch which uses the build artifact directly form the action tab:
https://github.com/daschuer/mixxx/commits/vcpkg_update_direct/
This has the issue that it is removed after a while, but it works nicely during development.
Do we want to inc operate this model and do the GitHub Release after testing?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a good point. We could make the non -rel branch create a pre-release instead, and reserve stable, latest releases for the rel branches. Am I right in thinking that -rel branch only gets updated upon successful tests?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This happened probably implicit. The -rel branch mainly produces smaller archive because it only contains one set of files without debug builds.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This happened probably implicit

Great then, I'll leverage that. FYI, a release can always be annually changed, I can we realise that rel release would tun out to be unstable
image

if: ${{ github.event_name == 'push' }}
id: ghrelease
shell: bash
name: "Creates a release in GitHub if it doesn't exist yet"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We normally have the name on top. You seems to have reverted the sort order of elements.
Please keep the normal sort order.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

normal sort order

Does that mean just "name first" or is there some kind of bespoke ranking I should follow?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure if there is something like this.
It is just a good practice to follow the examples in the GitHub Docs:
https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions

- name:
  if:
  env:
  run: 

Copy link
Member Author

@acolombier acolombier Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure which example you are referring to. Only order I can find is the following:
image

It is just a good practice

Let's just agree to disagree here. However, I'm not willing to block this pressing optimisation over such a minor point. Here are the used keys:

  • run
  • env
  • if
  • id
  • shell
  • name

Please give me what order you want and I will update that.

echo "wrote $outFile"
$chunkNum += 1
}
(Get-FileHash -Algorithm SHA256 -Path "${{ matrix.vcpkg_path }}/${{ env.VCPKG_ASSET_PATH }}").Hash | Out-File -FilePath "${{ env.VCPKG_ASSET_PATH }}.sha256"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to have the checksum as action artefact as well. You may also consider to remove the extra checksum generation from our deploy script, to have only a single place where it is done. Remember that it reads GBs.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to have the checksum as action artefact as well

Do you mean to generate the checksum on the flight, when uploading? While being a requested feature, it doesn't seem to be possible currently.

You may also consider to remove the extra checksum generation from our deploy script, to have only a single place where it is done.

Not sure what you mean - are you saying we shouldn't run the checksum on our buildenv script in the Mixxx repo?

Remember that it reads GBs.

Yes, but from a local SSD harddrive. This resource consumption can likely be negligible as we are probably talking <10Wh worth of induced current/month. Or did you mean read from somewhere else?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it would be just a performance benefit to do the checksum calculation only once. Currently it is done in de deploy script and in the workflow.

It is a minor annoyance, that the windows sh256 file has a different format.

I have no experience what is most convenient for a manual check on the users systems though.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is done in de deploy script

Are you referring to vcpkg export?

and in the workflow

VCPKG workflow or Mixxx?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants