chore: Caching the build folder for unit test schemes #3200
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
In order to speed up running unit tests, this PR makes the following changes:
Build
folder used when running tests inmain
, per scheme per platform.xcodebuild
would theoretically only need to build incrementally what has changed.gh cache delete
first in order to save it. We do this for every successfull test run, only inmain
.actions: write
permission for the GitHub token.restore-key
for the SHA caches so that we can retrieve old ones from previous commits. This was done mostly so we can now delete them when the test succeeds, so we don't end up with many orphaned caches if the tests are not re-run.General Checklist
Given When Then
inline code documentation and are named accordinglytestThing_condition_expectation()
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.