-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: update workflow to create MbedtlsSizeOf.kt file #57
Conversation
.github/workflows/update-mbedtls.yml
Outdated
@@ -37,6 +37,11 @@ jobs: | |||
pull-requests: write | |||
steps: | |||
- uses: actions/checkout@v4 | |||
- name: Compile mbedtls |
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.
Hmm. But then this step makes compile-mbedtls
job redundant. Can we somehow reuse the outcome of the compile-mbedtls
job?
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 don't think its redundant since the different platforms require unique configurations for running, maybe pass the .kt from the linux compiler as a separate artifact?
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.
Yes, let's better try this way.
Looks good, still lets test it |
08730b7
to
369dd6f
Compare
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.
👌
Problem:
Workflow for updating mbedtls is missing
MbedtlsSizeOf.kt
Why?
The
compileMbedtlst.sh
script to create the file is never executed in the instance where the PR is created, since the downloaded artifacts only contain the binaries.Solution:
Run the compile script to create theMbedtlsSizeOf.kt
file and then remove the binariesCreate a new artifact inside
compileMbedtlst.sh
and pass the file from there