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

Give build workflow step access to required deployment environment #2672

Merged
merged 2 commits into from
Apr 1, 2025

Conversation

per1234
Copy link
Contributor

@per1234 per1234 commented Mar 31, 2025

Certain operations in the "Arduino IDE" GitHub Actions workflow use GitHub Actions secrets which are defined in the repository's administrative settings.

These secrets will typically not be defined when the workflow is run in a fork. However, the workflow's base functionality, the automated building of the application, does not require secrets. Since that base functionality alone is very useful to contributors (either to validate relevant changes to the application and infrastructure, or to generate tester builds) who are performing development work in a fork. For this reason, the workflow is configured to only perform the secret-dependent operations when the required secrets have been defined in the repository settings.

One such operation is publishing the generated builds to Amazon S3, which Arduino uses to host files for distribution. This operation depends on the AWS_ROLE_ARN secret. As a security measure, this secret is defined inside a deployment environment (named production). GitHub Actions workflow jobs can only use secrets from deployment environments which they have been explicitly configured to have access to.

At the time the workflow was originally developed, GitHub did not have the deployment environment feature, and so the workflow was not configured to use environments. The switch to using a deployment environment for this secret was made only recently (#2651), and when that was done, the workflow job that checks whether the secret is defined was not configured to have access to the production environment. This caused the workflow to think it was running in a context where that secret is not defined even when the secret is in fact defined. The bug caused the workflow to always spuriously skip the publish job which publishes nightly builds of Arduino IDE, and the "publish release" step which publishes production releases.

For example, if you look at the latest schedule event triggered run of the workflow, which is intended to publish the nightly build, you can see that the publish job was incorrectly skipped:

https://github.com/arduino/arduino-ide/actions/runs/14163321599/job/39672908643

This job was skipped

The bug is fixed by configuring the build-type-determination job so that it has access to the "production" environment.


Originally reported by @KurtE:

https://forum.arduino.cc/t/software-download-item-nightly-2-x-builds/1369196

per1234 added 2 commits March 31, 2025 13:33
Certain operations in the "Arduino IDE" GitHub Actions workflow use GitHub Actions "secrets" which are defined in the
repository's administrative settings.

These secrets will typically not be defined when the workflow is run in a fork. However, the workflow's base
functionality, the automated building of the application, does not require secrets. Since that base functionality alone
is very useful to contributors (either to validate relevant changes to the application and infrastructure, or to
generate tester builds) who are performing development work in a fork. For this reason, the workflow is configured to
only perform the secret-dependent operations when the required secrets have been defined in the repository settings.

One such operation is publishing the generated builds to Amazon S3, which Arduino uses to host files for distribution.
This operation depends on the "AWS_ROLE_ARN" secret. As a security measure, this secret is defined inside a deployment
environment (named "production"). GitHub Actions workflow jobs can only use secrets from deployment environments which
they have been explicitly configured to have access to.

At the time the workflow was originally developed, GitHub did not have the deployment environment feature, and so the
workflow was not configured to use environments. The switch to using a deployment environment for this secret was made
only recently, and when that was done, the workflow job that checks whether the secret is defined was not configured to
have access to the "production" environment. This caused the workflow to think it was running in a context where that
secret is not defined even when the secret is in fact defined. The bug caused the workflow to always spuriously skip the
"publish" job which publishes nightly builds of Arduino IDE, and the "publish release" step which publishes production
releases.

The bug is fixed by configuring the "build-type-determination" job so that it has access to the "production"
environment.
@per1234 per1234 added topic: infrastructure Related to project infrastructure type: imperfection Perceived defect in any part of project labels Mar 31, 2025
@per1234 per1234 requested a review from giacomocusinato March 31, 2025 22:02
@per1234 per1234 self-assigned this Mar 31, 2025
Copy link
Collaborator

@giacomocusinato giacomocusinato left a comment

Choose a reason for hiding this comment

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

Thanks @per1234 for the promptly fix, I completely overlooked this!

@giacomocusinato giacomocusinato merged commit 9b15695 into arduino:main Apr 1, 2025
22 checks passed
@per1234 per1234 deleted the missing-environment branch April 1, 2025 15:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: infrastructure Related to project infrastructure type: imperfection Perceived defect in any part of project
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants